-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.js
40 lines (40 loc) · 1.13 KB
/
map.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
var map;
var latlng = new google.maps.LatLng(14.03058, 99.525363);
var stylez = [{
featureType: "all",
elementType: "all",
stylers: [{
saturation: -50
}]
}];
var mapOptions = {
zoom: 17,
center: latlng,
scrollwheel: false,
scaleControl: false,
disableDefaultUI: true,
mapTypeControlOptions: {
mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'gMap']
}
};
map = new google.maps.Map(document.getElementById("googleMap"), mapOptions);
var geocoder_map = new google.maps.Geocoder();
address = 'มหาวิทยาลัยหอการค้าไทย';
geocoder_map.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: map.getCenter()
});
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
var mapType = new google.maps.StyledMapType(stylez, {
name: "Grayscale"
});
map.mapTypes.set('gMap', mapType);
map.setMapTypeId('gMap');