com.supermap.services.providers
类 GoogleMapsMapProviderSetting
- java.lang.Object
-
- com.supermap.services.components.spi.MapProviderSetting
-
- com.supermap.services.providers.GoogleMapsMapProviderSetting
-
- 所有已实现的接口:
- java.io.Serializable
public class GoogleMapsMapProviderSetting extends MapProviderSetting
Google Maps 服务提供者配置类。
- 从以下版本开始:
- 8.0.2
- 另请参阅:
- 序列化表格
-
-
字段概要
字段 限定符和类型 字段和说明 java.lang.String
googleMapApiKey
Google Maps Api Keyjava.lang.String
googleMapClientID
具有 Google Maps 访问权限的账户。java.lang.String
googleMapCryptoKey
该账户的私人密钥。java.lang.String
googleMapHeight
每次向 Google Maps 请求瓦片时,瓦片的宽度(像素)。java.lang.String
googleMapLanguage
地图中的文本标注所使用的语言。java.lang.String
googleMapWidth
每次向 Google Maps 请求瓦片时,瓦片的宽度(像素)。java.lang.String
googleProxyAddress
Google Maps 代理地址。int
googleProxyPort
Google Maps 代理端口。-
从类继承的字段 com.supermap.services.components.spi.MapProviderSetting
dataPrjCoordSysType, watermark
-
-
构造器概要
构造器 构造器和说明 GoogleMapsMapProviderSetting()
-
方法概要
方法 限定符和类型 方法和说明 boolean
equals(java.lang.Object obj)
判断两个对象是否相等。boolean
getCacheEnabled()
是否使用缓存int
hashCode()
获取对象实例的哈希值boolean
isUseTileImage()
void
setCacheEnable(boolean cacheEnable)
void
setCacheEnabled(boolean cacheEnabled)
设置是否使用缓存void
setUseTileImage(boolean useTileImage)
-
从类继承的方法 com.supermap.services.components.spi.MapProviderSetting
getCacheMode, getCacheVersion, getName, getOutputPath, getOutputSite, getWatermark, setCacheMode, setCacheVersion, setName, setOutputPath, setOutputSite, setWatermark
-
-
-
-
字段详细资料
-
googleMapLanguage
public java.lang.String googleMapLanguage
地图中的文本标注所使用的语言。
- 从以下版本开始:
- 8.0.2
-
googleMapCryptoKey
public java.lang.String googleMapCryptoKey
该账户的私人密钥。
- 从以下版本开始:
- 8.0.2
-
googleMapClientID
public java.lang.String googleMapClientID
具有 Google Maps 访问权限的账户。
- 从以下版本开始:
- 8.0.2
-
googleMapWidth
public java.lang.String googleMapWidth
每次向 Google Maps 请求瓦片时,瓦片的宽度(像素)。 因为每次请求的单张瓦片上可能会有一个Geoogle的水印,所以将瓦片设置大一些可以减少整个视窗中的水印密度。但是,单张瓦片过大可能会影响瓦片获取的效率,因为您应该根据软硬件及网络条件,设置合理的值。
- 从以下版本开始:
- 8.0.2
-
googleMapHeight
public java.lang.String googleMapHeight
每次向 Google Maps 请求瓦片时,瓦片的宽度(像素)。一般会设置为宽、高相等的瓦片。
- 从以下版本开始:
- 8.0.2
-
googleProxyAddress
public java.lang.String googleProxyAddress
Google Maps 代理地址。如果因为网络原因服务不能正常出图,则应该设置此参数,如:127.0.0.1。
- 从以下版本开始:
- 8.0.2
-
googleProxyPort
public int googleProxyPort
Google Maps 代理端口。
- 从以下版本开始:
- 8.0.2
-
googleMapApiKey
public java.lang.String googleMapApiKey
Google Maps Api Key
-
-
方法详细资料
-
setCacheEnable
@Deprecated public void setCacheEnable(boolean cacheEnable)
设置是否使用缓存。
- 参数:
cacheEnable是否使用缓存
-
-
setUseTileImage
public void setUseTileImage(boolean useTileImage)
-
isUseTileImage
public boolean isUseTileImage()
-
equals
public boolean equals(java.lang.Object obj)
判断两个对象是否相等。
- 覆盖:
equals
在类中java.lang.Object
- 参数:
obj待比较的对象。
-- 返回:
- 是否相等的标识,true表示两个对象相等。
-
getCacheEnabled
public boolean getCacheEnabled()
是否使用缓存- 返回:
-
setCacheEnabled
public void setCacheEnabled(boolean cacheEnabled)
设置是否使用缓存- 参数:
cacheEnabled
-
-
hashCode
public int hashCode()
获取对象实例的哈希值- 覆盖:
hashCode
在类中java.lang.Object
- 返回:
- 哈希值
-
-