discordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teams
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
2.9 KiB
49 lines
2.9 KiB
|
|
var google; |
|
|
|
function init() { |
|
// Basic options for a simple Google Map |
|
// For more options see: https://developers.google.com/maps/documentation/javascript/reference#MapOptions |
|
// var myLatlng = new google.maps.LatLng(40.71751, -73.990922); |
|
var myLatlng = new google.maps.LatLng(40.69847032728747, -73.9514422416687); |
|
// 39.399872 |
|
// -8.224454 |
|
|
|
var mapOptions = { |
|
// How zoomed in you want the map to start at (always required) |
|
zoom: 7, |
|
|
|
// The latitude and longitude to center the map (always required) |
|
center: myLatlng, |
|
|
|
// How you would like to style the map. |
|
scrollwheel: false, |
|
styles: [{"featureType":"all","elementType":"labels.text.fill","stylers":[{"saturation":36},{"color":"#000000"},{"lightness":40}]},{"featureType":"all","elementType":"labels.text.stroke","stylers":[{"visibility":"on"},{"color":"#000000"},{"lightness":16}]},{"featureType":"all","elementType":"labels.icon","stylers":[{"visibility":"off"}]},{"featureType":"administrative","elementType":"geometry.fill","stylers":[{"color":"#000000"},{"lightness":20}]},{"featureType":"administrative","elementType":"geometry.stroke","stylers":[{"color":"#000000"},{"lightness":17},{"weight":1.2}]},{"featureType":"landscape","elementType":"geometry","stylers":[{"color":"#000000"},{"lightness":20}]},{"featureType":"poi","elementType":"geometry","stylers":[{"color":"#000000"},{"lightness":21}]},{"featureType":"road.highway","elementType":"geometry.fill","stylers":[{"color":"#000000"},{"lightness":17}]},{"featureType":"road.highway","elementType":"geometry.stroke","stylers":[{"color":"#000000"},{"lightness":29},{"weight":0.2}]},{"featureType":"road.arterial","elementType":"geometry","stylers":[{"color":"#000000"},{"lightness":18}]},{"featureType":"road.local","elementType":"geometry","stylers":[{"color":"#000000"},{"lightness":16}]},{"featureType":"transit","elementType":"geometry","stylers":[{"color":"#000000"},{"lightness":19}]},{"featureType":"water","elementType":"geometry","stylers":[{"color":"#000000"},{"lightness":17}]}] |
|
}; |
|
|
|
|
|
|
|
// Get the HTML DOM element that will contain your map |
|
// We are using a div with id="map" seen below in the <body> |
|
var mapElement = document.getElementById('fh5co-map'); |
|
|
|
// Create the Google Map using out element and options defined above |
|
var map = new google.maps.Map(mapElement, mapOptions); |
|
|
|
var addresses = ['Brooklyn']; |
|
|
|
for (var x = 0; x < addresses.length; x++) { |
|
$.getJSON('http://maps.googleapis.com/maps/api/geocode/json?address='+addresses[x]+'&sensor=false', null, function (data) { |
|
var p = data.results[0].geometry.location |
|
var latlng = new google.maps.LatLng(p.lat, p.lng); |
|
new google.maps.Marker({ |
|
position: latlng, |
|
map: map, |
|
icon: 'images/loc.png' |
|
}); |
|
|
|
}); |
|
} |
|
|
|
} |
|
google.maps.event.addDomListener(window, 'load', init); |