1
我已經創建了一個jsp,我已經在Google地圖中使用geocoder類將地址轉換爲標記。現在我唯一遇到的問題是,當我試圖改變標記的圖標圖像時,我只得到所有標記的最後一個圖標。谷歌地圖:關於標記圖標和地理編碼的問題
<script type="text/javascript">
var geocoder;
var address = new Array();
var marker = new Array();
var images=["A","B","C","D","E","F","G","H","I","J","K","L"];
function initialize()
{
var locations = new String("<%=request.getParameter("location")%>");
locations=locations.substring(0,(locations.length)-1);
var map = new google.maps.Map(document.getElementById('googleMap'), {
mapTypeId: google.maps.MapTypeId.ROADMAP,
zoom: 8
});
if(locations=='null' || locations=='')
locations = 'Pune, INDIA\;';
address = locations.split('\;');
marker[0] = new google.maps.Marker({
map:map
});
geocoder = new google.maps.Geocoder();
var i=1;
for(i=1; i<address.length; i++){
geocoder.geocode({
'address': address[i]+", India"
},function(results, status){
if(status == google.maps.GeocoderStatus.OK) {
var marker = new google.maps.Marker({
map: map,
icon: 'http://www.google.com/mapfiles/marker'+images[i]+'.png',
position: results[0].geometry.location
});
var info = new google.maps.InfoWindow({
content: address[i]+', India'
});
google.maps.event.addListener(marker, 'click', function() {
info.open(map, marker);
});
}
});
}
geocoder.geocode({
'address': address[0]+", India"
},function(results, status){
if(status == google.maps.GeocoderStatus.OK) {
marker[0].setPosition(results[0].geometry.location);
map.setCenter(results[0].geometry.location);
new google.maps.Circle({
center: results[0].geometry.location,
radius: radius * 1000, // Convert to meters
fillColor: '#00ff00',
fillOpacity: 0.2,
map: map,
strokeColor : '#0000ff',
strokeOpacity : 0.3,
strokeWeight: 1
});
}
});
}//End of initialize function.
google.maps.event.addDomListener(window, 'load', initialize);
</script>
請幫忙!!!
感謝。我試過了,它開始工作。 :) – Ankit
現在,一個新的參數'map'被髮送到createMaker,我們不應該改變createMarker()的聲明嗎?我試圖使用這個,但它似乎並沒有工作:( –
是的。抱歉,從未更新過的帖子中的代碼[「working」/tested](http://www.geocodezip.com/v3_SO_simpleMap_geocodeCustomIconA .html)版本。 – geocodezip