Can you plot a location on the UWP Map Control with an altitude? -
i have uwp app mapcontrol , draw mapicons on map specific locations. can give them altitude?
in order position elements @ specific locations on map, 1 use mapcontrol.location attached property:
<image source="ms-appx:///assets/pinstore.png" width="30" maps:mapcontrol.location="{x:bind location}" maps:mapcontrol.normalizedanchorpoint="{x:bind anchor}"/>
i haven't checked myself but, given mapcontrol.location property of type geopoint
, geopoint
supports altitude value , reference system assume work. need display map in 3d mode (use style
property of mapcontrol) , tilted (use 'desiredpitch` property on mapcontrol) altitude "makes sense" though.
Comments
Post a Comment