Created
January 28, 2012 01:49
-
-
Save dodyw/1692036 to your computer and use it in GitHub Desktop.
combining geocode and infowindow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $address = "Sutorejo Utara, Surabaya, Indonesia"; | |
| $address = urlencode($address); | |
| $url = "http://maps.googleapis.com/maps/api/geocode/json?address=$address&sensor=false"; | |
| $raw = file_get_contents($url); | |
| $data = json_decode($raw); | |
| $lat = $data->results[0]->geometry->location->lat; | |
| $lng = $data->results[0]->geometry->location->lng; | |
| // print $lat. ", ".$lng; | |
| $marker_text = "<strong>Location:</strong> <br />Jalan Sutorejo Utara VII/1 <br/> Surabaya, INDONESIA." | |
| ?> | |
| <html> | |
| <head> | |
| <style type="text/css"> | |
| div#map{ width:450px; height:350px; } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="map"></div> | |
| <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script> | |
| <script type="text/javascript"> | |
| window.onload = function() { | |
| var settings = { | |
| mapTypeId: google.maps.MapTypeId.ROADMAP, | |
| zoom: 15, | |
| center: new google.maps.LatLng(<?php print $lat ?>, <?php print $lng ?>) | |
| }; | |
| var map = new google.maps.Map(document.getElementById("map"), settings); | |
| var marker = new google.maps.Marker({ | |
| position: new google.maps.LatLng(<?php print $lat ?>, <?php print $lng ?>), | |
| map: map | |
| }); | |
| var infowindow = new google.maps.InfoWindow({ | |
| content: '<?php print $marker_text ?>' | |
| }); | |
| google.maps.event.addListener(marker, 'click', function() { | |
| infowindow.open(map, marker); | |
| }); | |
| } | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment