mapstraction.removeMarker
地図上のマーカーを削除しませんでした
例外はスローされません.btはmapstractionマップで削除されません。
`mapstraction.removeMarker(markers[j]);
//I will get all markers from mapstraction map, then i want to remove all
removeAllMarkers(mapstraction.markers);
//some of them are not removed
function removeAllMarkers(markers){
for(var j=0; j<markers.length; j++){
try{
mapstraction.removeMarker(markers[j]);
}catch(err){
}
}
}