【发布时间】:2016-03-11 18:44:24
【问题描述】:
我正在我的 html/jsp 页面正文中使用 Google 地图进行网络动态项目。
由于 (lat,lng,map) 我做了一个函数来创建一个标记,并在标记的参数中使用一个特殊的 image.png 作为图标。
在我的地图中,我制作了两种不同的样式(地图的颜色...):“白天”和“夜晚”。
我想知道当用户单击 Night 以更改样式时如何更改标记的图标。确实,marker的颜色不适合这种风格的地图……
我尝试用同名的不同样式初始化 var image = /.../...png,所以我可以在地图代码中使用 var,但它不起作用。我也试过一个 if like
if(map.mapTypeControlOptions.mapTypeIds.equals(Day)){
var image=...png
} else {
var image=...png
}...
customMapTypeIdJour<div id="map"></div>
<script>
function initMap() {
var customMapTypeNuit = new google.maps.StyledMapType([
{
"featureType": "landscape.man_made", "elementType": "geometry.fill", "stylers": [ { "color": "#2b3f57" } ]
},
// ... the style of map
{
name: 'Nuit'
}
);
var customMapTypeJour = new google.maps.StyledMapType([
// a style of map
{
name: 'Jour'
}
);
var customMapTypeIdJour = 'Jour';
var customMapTypeIdNuit = 'Nuit';
var map = new google.maps.Map(document.getElementById('map'), {
center: {lat: 43.6666, lng: 1.43333},
zoom: 17,
streetViewControl: false,
zoomControl: false,
mapTypeControlOptions: {
mapTypeIds: [customMapTypeIdJour, customMapTypeIdNuit]
}
});
map.mapTypes.set(customMapTypeIdNuit, customMapTypeNuit);
map.mapTypes.set(customMapTypeIdJour, customMapTypeJour);
map.setMapTypeId(customMapTypeIdJour);
var infoWindow = new google.maps.InfoWindow({map: map});
// Try HTML5 geolocation.
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
var pos = {
lat: position.coords.latitude,
lng: position.coords.longitude
};
infoWindow.setPosition(pos);
infoWindow.setContent('Vous êtes ici.');
createMarqueur(lat, lng, map); // create a special marker with a special image as icon
map.setCenter(pos);
});
} else {
// Browser doesn't support Geolocation
handleLocationError(false, infoWindow, map.getCenter());
}
}
function handleLocationError(browserHasGeolocation, infoWindow, pos) {
infoWindow.setPosition(pos);
infoWindow.setContent(browserHasGeolocation ?
'Error: The Geolocation service failed.' :
'Error: Your browser doesn\'t support geolocation.');
}
</script>
【问题讨论】:
-
如果您需要更多信息,请告诉我
-
你如何将“Day”放在这里 mapTypeIds.equals(Day)?我不确定,但可能包括 if..else 在内的这部分代码没有执行,它正在设置自定义图标。
-
在我的代码中我没有这个“如果”,我只是试了一下,把它放在 navigator.geolocation.getCurrent Position(...) 之后。只是不要在上面的代码中考虑它。
标签: javascript google-maps google-maps-api-3