PHP show position on google map php - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

show position on google map php


 361

PHP


3

<!DOCTYPE html>
<html>
<head>
<?php
echo '<script src="https://maps.googleapis.com/maps/api/js"></script>';
echo '<script type="text/javascript">
function initialize() {
var position = new google.maps.LatLng(-34.397, 150.644);
var myOptions = {
zoom: 10,
center: position,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(
document.getElementById("your_map_canvas"),
myOptions);

var marker = new google.maps.Marker({
position: position,
map: map,
title:"Your title"
});

var contentString = "xyz content string";
var infowindow = new google.maps.InfoWindow({
content: contentString
});

google.maps.event.addListener(marker,"click", function() {
infowindow.open(map,marker);
});

}
google.maps.event.addDomListener(window, "load", initialize);
</script>';
?>
</head>
<body>
<div id="your_map_canvas" style="width:600px; height:600px"></div>
</body>
</html>


By        
The power of the user (%)
62%



The most helpful PHP solutions

detect browser phpdetect browser phpPHP

Click to see more ...

  4.6K     408

create QR code phpcreate QR code phpPHP

Click to see more ...

  3K     289

create relative date phpcreate relative date phpPHP

Click to see more ...

  2.2K     264

drag and drop upload file using phpdrag and drop upload file using phpPHP

Click to see more ...

  2.7K     253

delete array item phpdelete array item phpPHP

Click to see more ...

  2.4K     245

detect ie phpdetect ie phpPHP

Click to see more ...

  1.6K     213

detect speed internet phpdetect speed internet phpPHP

Click to see more ...

  1.6K     198

get current url phpget current url phpPHP

Click to see more ...

  1.7K     197

get meta tag phpget meta tag phpPHP

Click to see more ...

  1.4K     193

Get real client country using php ?Get real client country using php ?PHP

Click to see more ...

  1.4K     181

Welcome aboard!
We are happy you are here and
wish you good net-raft!