c# - GMap.NET in WPF, don't work Markers -


how can add marker map? use:

pointlatlng point = gmap.fromlocaltolatlng(62.03175418653, 129.731884002686); gmapmarker marker = new gmapmarker(point); gmap.markers.add(marker); 

it's don't work..

my gmap:

    gmap.mapprovider = googlemapprovider.instance;     gmap.manager.mode = accessmode.serverandcache;     gmapprovider.webproxy = null;     gmap.position = new pointlatlng(62.03175418653, 129.731884002686);     gmap.minzoom = 1;     gmap.maxzoom = 20;     gmap.zoom = 10; 

pls help!

add shape marker.

marker.shape = new markershape(....); 

Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -