0

来自googlemaps/android-maps-utils的类NonHierarchicalViewBasedAlgorithm有一个构造函数:

 public NonHierarchicalViewBasedAlgorithm(int screenWidth, int screenHeight) {
        mViewWidth = screenWidth;
        mViewHeight = screenHeight;
    }

但我不确定是否应该以像素或 dp 为单位发送宽度。

有任何想法吗?

4

2 回答 2

1

可以肯定的是,所有 Google android 地图部分都以原始像素工作,而不是倾斜。

于 2019-10-28T23:09:35.797 回答
0

来自 NonHierarchicalViewBasedAlgorithm 类的源代码(https://github.com/googlemaps/android-maps-utils/blob/main/library/src/main/java/com/google/maps/android/clustering/algo/NonHierarchicalViewBasedAlgorithm。爪哇):

/**
 * @param screenWidth  map width in dp
 * @param screenHeight map height in dp
 */
public NonHierarchicalViewBasedAlgorithm(int screenWidth, int screenHeight) {
    mViewWidth = screenWidth;
    mViewHeight = screenHeight;
}
于 2021-12-22T20:15:11.413 回答