문제

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