我正在使用谷歌地图API,我想移动制造商。 我使用以下代码:
marker.setPosition( new google.maps.LatLng(driver.location_latitude, driver.location_longitude ) );
问题在于它复制了制造商,而不仅仅是移动它。
答案 0 :(得分:0)
试试这段代码
marker.setMap(null);
marker.setPosition( new google.maps.LatLng(driver.location_latitude, driver.location_longitude ) );
marker.setMap(map);
请注意map
是您的地图对象。