How to get coordinates from location picked by user?
For example, the user points some place on map, and the coordinates are showed in textBox.
I've found some reverse geolocation, but I don't need an address, only the coordinates.

有帮助吗?

解决方案

Do something like this:

MyMap.Tap += (s, e) =>
{
    var loc = MyMap.ConvertViewportPointToGeoCoordinate(e.GetPosition(MyMap));

    //Do something with the selected location
};

其他提示

Google maps have a api for developers to embed a google maps inside a website, there is a function to find the coordinates of the pin by user, the api use JavaScript to control. I don't know if it can run in a program but it is design for a website.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top