-
-
Save enniosousa/840a59c2cd96029e5a55a7cc8def71c8 to your computer and use it in GitHub Desktop.
pin cities on a google map based on city name & country
This file contains 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
<!doctype> | |
<html> | |
<head> | |
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
<title>Google Maps - pin cities</title> | |
<style type="text/css"> | |
html, body { height: 100%; margin: 0; padding: 0; } | |
#map_canvas { height: 100%; } | |
</style> | |
</head> | |
<body onload="initialize()"> | |
<div id="map_canvas"></div> | |
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false"></script> | |
<script type="text/javascript"> | |
var citylist = [ | |
["Algiers","Algeria"], | |
["Gaborone","Botswana"], | |
["Kinshasa","Democratic Republic of the Congo"], | |
["Alexandria","Egypt"], | |
["Cairo","Egypt"], | |
["Addis Ababa","Ethiopia"], | |
["Accra","Ghana"], | |
["Nairobi","Kenya"], | |
["Casablanca","Morocco"], | |
["Lagos","Nigeria"], | |
["Dakar","Senegal"] | |
]; | |
var geocoder, map; | |
function initialize() { | |
geocoder = new google.maps.Geocoder(); | |
var latlng = new google.maps.LatLng(-0.397, 5.644); | |
var options = { | |
zoom: 2, | |
center: latlng, | |
mapTypeId: google.maps.MapTypeId.ROADMAP | |
} | |
map = new google.maps.Map(document.getElementById("map_canvas"), options); | |
for (var i = 0; i < 10; i++) { | |
var address = citylist[i][0] + ', ' + citylist[i][1]; | |
codeAddress(address); | |
} | |
}; | |
function codeAddress(address) { | |
geocoder.geocode({ 'address': address }, function(results, status) { | |
if (status === google.maps.GeocoderStatus.OK) { | |
map.setCenter(results[0].geometry.location); | |
var marker = new google.maps.Marker({ | |
map: map, | |
position: results[0].geometry.location | |
}); | |
} else { | |
alert("Geocode unsuccessful"); | |
} | |
}); | |
}; | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment