How to remove adjacent places when inserting google map in iframe?

I want to add the following map to my site:

https://maps.google.co.uk/maps?q=67+Bridge+Street,+Chester&hl=en&sll=53.16379,-2.737316&sspn=0.678421,2.113495&oq=67+bridge+&hnear=67+Bridge+St, + Chester + CH1 + 1NW, + United + Kingdom & t = m & z = 16

There is a marker on the map for the desired address, but then it also has markers for nearby places such as coffee coffee, Eastgate watches, etc.

Is there a way to insert a map without markers for any other places on it?

Just to clarify, I want to keep a large red marker, but delete all other interesting places and businesses.

+4
source share
2

Google Map api , .

. , , MapTypeStyleFeatureType. , . Javascript API V3 . , .

google.maps.MapTypeStyleFeatureType , .. road.labels, landscape.natural, poi.business, , , :

var styles = [
  {
    featureType: "poi",
    elementType: "business",
    stylers: [
      { visibility: "off" }
    ]
  }
];

map.setOptions({styles: styles});
+5
0

All Articles