RMCloudMapSource

@interface RMCloudMapSource :RMSMTileSource

SuperMap云地图服务

Summary
RMCloudMapSourceSuperMap云地图服务
Constructor
initRMCloudMapSource用于在iOS上加载云地图服务,方便的将iServer发布的地图服务显示在地图框架中
Functions
tileSideLength获取该地图服务每一个Tile瓦片的像素大小,默认为256像素
setTileSideLength指定每一个Tile瓦片的像素大小
Properties
minZoom{float} 当前地图最小显示层级。
maxZoom{float} 当前地图最大显示层级。

Constructor

init

RMCloudMapSource用于在iOS上加载云地图服务,方便的将iServer发布的地图服务显示在地图框架中

RMCloudMapSource* cloud = [[RMCloudMapSource alloc] init];
RMMapContents *newContents = [[RMMapContents alloc] initWithView:self tilesource:cloud];

Functions

tileSideLength

-(int) tileSideLength

获取该地图服务每一个Tile瓦片的像素大小,默认为256像素

Returns

{<int>} 获取该地图服务每一个Tile瓦片的像素大小,默认为256像素。

setTileSideLength

-(void) setTileSideLength: (NSUInteger) aTileSideLength

指定每一个Tile瓦片的像素大小

Parameters

aTileSideLength{NSUInteger} 指定的像素大小。

Properties

minZoom

{float} 当前地图最小显示层级。

maxZoom

{float} 当前地图最大显示层级。

@interface RMCloudMapSource :RMSMTileSource
SuperMap云地图服务
-(int) tileSideLength
获取该地图服务每一个Tile瓦片的像素大小,默认为256像素
-(void) setTileSideLength: (NSUInteger) aTileSideLength
指定每一个Tile瓦片的像素大小
Close