在nexus 10上错误地显示了Google Map API v2标记

时间:2013-12-17 22:14:43

标签: android google-maps-markers google-maps-android-api-2 nexus-10

正如你可以看到下面的两个截图(我的nexus 5上的第一个截图和我的nexus 10上的第二个截图),似乎我在Android google地图Api V2上有一些麻烦在我的nexus 10上正确显示标记。它正在运行相同的代码但是标记很小并且不尊重锚参数(标记应该完全在路上)。我决定显示默认标记,以确保它与我的自定义标记无关。

要创建我的标记,我只需执行以下操作:

MarkerOptions option = new MarkerOptions();
bitmapDescriptor = BitmapDescriptorFactory.defaultMarker();
option.icon(bitmapDescriptor);
option.anchor(0.5f, 1);
option.position(new LatLng(latitude, longitude));

nexus 5

nexus 10

0 个答案:

没有答案