I have this code:
<script>
function init() {
var myLatlng = new google.maps.LatLng(34.04, -118.24);
var myOptions = {
zoom: 13,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById('map'), myOptions);
}
google.maps.event.addDomListener(window, 'load', init);
</script>
In which it generates this map below in a div
any. I circled some places where I do not want to appear on the map. In fact, I do not want you to show any place on the map, just the Pope with streets and highways:
Is it possible to remove all locations and bus stops / stops on Google Maps? If so, what would be the most feasible way to do this?