を深く読みましたが、デバイスのピクセル表現をNutiteq Api Reference
取得するための組み込みメソッドが見つかりませんでした。既存の の下には何もないため、この問題をどのように克服できるかわかりません。longitude
latitude
Projections
私が作りたいのは、このよう
circle
に自分の実際に描くことです。GPS Location
n-vertices Polygon
のようではありませんHelloMap3D
。
のピクセルを取得しlat
、与えられた下で与えられるlon
ことは課題です。残りはこのような呼び出しになるからですradius
Zoom Level
Projection
...
canvas.drawCircle(longitudeInPixel, latitudeInPixel, radiusInPixel, this.paintStroke); // <- For blue circunference
canvas.drawCircle(longitudeInPixel, latitudeInPixel, radiusInPixel, this.paintFill); // <- For blue translucent circle
...
lat
では、lon
とradius
を の下のピクセル表現に変換するにはどうすればよいNutiteq
でしょうか?
よろしくお願いします。