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

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -