I have a wordpress website. I've embedded a map on the contacts page. How can I put a customized logo as a placemark in that map? I am fairly new to this and would like to know how to do this.
Asked
Active
Viewed 68 times
0
-
2check http://stackoverflow.com/questions/1175691/can-i-change-the-marker-in-a-google-maps-embedded-map-iframe – gvmani May 28 '15 at 13:48
2 Answers
0
Have you added a marker to the map? You can see the example from Snazzy Map (view source code of their example) https://snazzymaps.com/download-example/1 Then add the url of your customized icon.
var marker = new google.maps.Marker({
position: new google.maps.LatLng(-39, 700),
map: map,
icon: "http://yoursite.com.au/wp-content/uploads/your-marker.png",
title: 'Anything you want!'
});
I am pretty sure there are other ways, but that's how I did mine.

melisa
- 1
- 2