Page 1 of 1

use custom marker for geolocation

Posted: Wed Sep 12, 2012 8:21 am
by John4930205

How can I use custom marker for google map geolocation? I did the below for
Click - Invoke Service - geolocation1
But it's not working. Plz help!

-------------------------------

var map = Tiggr('googlemap1');
map.options['address']='';
map.refresh();

var marker1 = new google.maps.Marker({
position: myLatlng,
icon: 'http://labs.google.com/ridefinder/ima...',
title: "Testmarker1"
});
Tiggr("googlemap1").options.mapElement.gmap('addMarker', marker1);


use custom marker for geolocation

Posted: Wed Sep 12, 2012 10:36 am
by Maryna Brodina

Hello! You should be able to do it with Google Maps API. This should help https://developers.google.com/maps/do... (Customizing the Marker Image), http://stackoverflow.com/questions/48...


use custom marker for geolocation

Posted: Wed Sep 12, 2012 6:48 pm
by Emmz

check the links you gave. The google one is dead. The stackoverflow seems unrelated?


use custom marker for geolocation

Posted: Wed Sep 12, 2012 6:52 pm
by maxkatz

All Google Maps API is here: https://developers.google.com/maps/do...

This is specific for markers: https://developers.google.com/maps/do...


use custom marker for geolocation

Posted: Fri Sep 14, 2012 8:44 am
by John4930205

thx!