Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
osmdroidを使用して、タイルに分割された大きな画像(4096x4096)を表示します。
次に、緯度と経度ではなく、画像のX座標とY座標に基づいて地図上にマーカーを設定します。
たとえば、このデータに基づいて地図にマーカーを追加することは可能ですか?
私は自分で解決策を見つけました。
Microsoft は、microsoft.mappoint.TileSystemまさにこれを行うことができるクラス ( ) を作成しました。
microsoft.mappoint.TileSystem
コード例:
GeoPoint geoPoint = TileSystem.PixelXYToLatLong( 10, // X 250, // Y 3, // Level of detail null // Reuse );