Android(MapView):如何在地图视图中设置 4 英里的缩放级别?

发布于 2024-10-30 21:36:32 字数 79 浏览 4 评论 0原文

我有一个纬度和经度(GeoPoint),它是地图的中心。 我想将缩放级别设置为距我拥有的纬度和经度 4 英里的距离。

提前致谢,

I have a latitude and longitude(GeoPoint) which is the center of map.
I want to set zoom level of 4miles distance from latitude and longitude that I have.

Thanks in Advance,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

忆沫 2024-11-06 21:36:32

已解决:

来自 Androd 谷歌 API:
Zoomlevel 设置地图的缩放级别。该值将被限制在 1 到 21 之间(含 1 和 21),但并非所有区域都具有更高缩放级别的图块。这只是直接设置缩放级别;
参数:
ZoomLevel - 在 ZoomLevel 1 处,地球赤道长 256 像素。每个连续的缩放级别都会放大 2 倍。
返回:
新的缩放级别,介于 1 和 21 之间(含 1 和 21)。

所以
给定赤道 E = 40075 公里或 21.638,8 英里
给定缩放距离 D = 20 公里或英里,

缩放级别: L = log2(E/D)+1

这是我使用的简单方法
如果您想使用里程,请记住设置 E= 21.638,8...

public static byte zoomLevel (double distance){
    byte zoom=1;
    double E = 40075;
    Log.i("Astrology", "result: "+ (Math.log(E/distance)/Math.log(2)+1));
    zoom = (byte) Math.round(Math.log(E/distance)/Math.log(2)+1);
    // to avoid exeptions
    if (zoom>21) zoom=21;
    if (zoom<1) zoom =1;

    return zoom;
}

SOLVED :

from Androd google API :
zoomlevel sets the zoomlevel of the map. The value will be clamped to be between 1 and 21 inclusive, though not all areas have tiles at higher zoom levels. This just sets the level of the zoom directly;
Parameters:
zoomLevel - At zoomLevel 1, the equator of the earth is 256 pixels long. Each successive zoom level is magnified by a factor of 2.
Returns:
the new zoom level, between 1 and 21 inclusive.

So
given the Equator E = 40075 Km or 21.638,8 miles
given the distance to zoom D = 20 km or miles

the zoom level : L = log2(E/D)+1

This is the simple method I've used
remember to set E= 21.638,8 if you want to use the miles...

public static byte zoomLevel (double distance){
    byte zoom=1;
    double E = 40075;
    Log.i("Astrology", "result: "+ (Math.log(E/distance)/Math.log(2)+1));
    zoom = (byte) Math.round(Math.log(E/distance)/Math.log(2)+1);
    // to avoid exeptions
    if (zoom>21) zoom=21;
    if (zoom<1) zoom =1;

    return zoom;
}
逆流 2024-11-06 21:36:32

您可以使用 setzoom() 函数来执行此操作。下面的代码可以在此示例中找到。

mc = mapView.getController();
String coordinates[] = {"1.352566007", "103.78921587"};
double lat = Double.parseDouble(coordinates[0]);
double lng = Double.parseDouble(coordinates[1]);

p = new GeoPoint(
    (int) (lat * 1E6), 
    (int) (lng * 1E6));

mc.animateTo(p);
mc.setZoom(17); 

You can use the setzoom()-function to do so. The code below can be found in this example.

mc = mapView.getController();
String coordinates[] = {"1.352566007", "103.78921587"};
double lat = Double.parseDouble(coordinates[0]);
double lng = Double.parseDouble(coordinates[1]);

p = new GeoPoint(
    (int) (lat * 1E6), 
    (int) (lng * 1E6));

mc.animateTo(p);
mc.setZoom(17); 
峩卟喜欢 2024-11-06 21:36:32

使用地图的 .setZoom(int); 参数。我认为大约是 15:

所以 myMap.setZoom(15);

Play with the .setZoom(int); parameter of your map. i think its around 15:

so myMap.setZoom(15);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文