mirror of
				https://github.com/jiawanlong/Cesium-Examples.git
				synced 2025-11-04 09:14:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			269 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			269 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						||
 * Created with JetBrains WebStorm.
 | 
						||
 * User: CC
 | 
						||
 * Date: 14-12-30
 | 
						||
 * Time: 下午5:09
 | 
						||
 * To change this template use File | Settings | File Templates.
 | 
						||
 */
 | 
						||
//判定一下是否存在了SuperMap.Web,如果没有则初始化一个
 | 
						||
if(SuperMap.Web == undefined )
 | 
						||
{
 | 
						||
    SuperMap.Web = new Object();
 | 
						||
}
 | 
						||
//判定一下是否存在了SuperMap.Web.iConnector,如果没有则初始化一个
 | 
						||
if(SuperMap.Web.iConnector == undefined )
 | 
						||
{
 | 
						||
    SuperMap.Web.iConnector = new Object();
 | 
						||
}
 | 
						||
/**
 | 
						||
 * Class:
 | 
						||
 * AMap适配器类
 | 
						||
 * @constructor
 | 
						||
 */
 | 
						||
SuperMap.Web.iConnector.AMap = function(){
 | 
						||
 | 
						||
}
 | 
						||
/**
 | 
						||
 *  APIMethod:
 | 
						||
 *  创建AMap的扩展图层,这里的图层中切片的来源为iserver服务器
 | 
						||
 * @param url  {String}  地图服务的url地址,如:“http://localhost:8090/iserver/services/map-china400/rest/maps/China”
 | 
						||
 * @param options 可选的参数
 | 
						||
 * transparent - {Boolean} 设置切片是否透明,默认为true
 | 
						||
 * cacheEnabled - {Boolean} 设置是否使用缓存,默认为false
 | 
						||
 * layersID - {String} 设置临时图层的id,一般用于专题图的叠加使用
 | 
						||
 * @returns {Object} 返回AMap地图的扩展图层对象
 | 
						||
 */
 | 
						||
SuperMap.Web.iConnector.AMap.getLayer = function(url,options){
 | 
						||
    if(url == undefined)
 | 
						||
    {
 | 
						||
        return;
 | 
						||
    }
 | 
						||
    var tileLayer = new AMap.TileLayer({
 | 
						||
        getTileUrl:getTileUrl
 | 
						||
    });
 | 
						||
    var layerUrl = url + "/image.png?redirect=false&width=256&height=256";
 | 
						||
 | 
						||
    //切片是否透明
 | 
						||
    var transparent = true;
 | 
						||
    if(options && options.transparent !=undefined)
 | 
						||
    {
 | 
						||
        transparent = options.transparent;
 | 
						||
    }
 | 
						||
    layerUrl += "&transparent=" + transparent;
 | 
						||
 | 
						||
    //是否使用缓存
 | 
						||
    var cacheEnabled = false;
 | 
						||
    if(options && options.cacheEnabled !=undefined)
 | 
						||
    {
 | 
						||
        cacheEnabled = options.cacheEnabled;
 | 
						||
    }
 | 
						||
    layerUrl += "&cacheEnabled=" + cacheEnabled;
 | 
						||
 | 
						||
    //如果有layersID,则是在使用专题图
 | 
						||
    if(options && options.layersID !=undefined)
 | 
						||
    {
 | 
						||
        layerUrl += "&layersID=" +options.layersID;
 | 
						||
    }
 | 
						||
    //如果有projection,目前只支持4326或者3857的地图。
 | 
						||
    var projection="3857";
 | 
						||
    if(options&&options.projection){
 | 
						||
        if(options.projection==="4326"){
 | 
						||
            projection="4326";
 | 
						||
        }
 | 
						||
    }
 | 
						||
    //计算分辨率和比例尺
 | 
						||
    var resLen = 17;
 | 
						||
    var resStart = 0;
 | 
						||
    var resolutions = [];
 | 
						||
    var dpi = 95.99999999999984;
 | 
						||
    var scales = [];
 | 
						||
    if(projection==="3857"){
 | 
						||
        for(var i=resStart;i<=resLen;i++){
 | 
						||
            var res3857 = 156543.0339/Math.pow(2,i);
 | 
						||
            resolutions.push(res3857);
 | 
						||
            var scale3857 = 0.0254/dpi/res3857;
 | 
						||
            scales.push(scale3857);
 | 
						||
        }
 | 
						||
        tileLayer.scales=scales;
 | 
						||
    }
 | 
						||
    else{
 | 
						||
        for(var i=resStart;i<=resLen;i++){
 | 
						||
            var res4326 = 1.40625/Math.pow(2,i);
 | 
						||
            resolutions.push(res4326);
 | 
						||
 | 
						||
            var scale4326 = 0.0254*360/dpi/res4326/Math.PI/2/6378137;
 | 
						||
            scales.push(scale4326);
 | 
						||
        }
 | 
						||
        tileLayer.scales=scales;
 | 
						||
    }
 | 
						||
 | 
						||
    function getTileUrl(x, y, z){
 | 
						||
        var po = Math.pow(2,z);
 | 
						||
        x-=po/2;
 | 
						||
        y=po/2-y-1;
 | 
						||
        //使用bounds出图
 | 
						||
        var left = x*256*resolutions[z];
 | 
						||
        var bottom = y*256*resolutions[z];
 | 
						||
        var right = (x + 1)*256*resolutions[z];
 | 
						||
        var top = (y + 1)*256*resolutions[z];
 | 
						||
        //将bounds组合到url里面
 | 
						||
        var  tileUrl = layerUrl+"&viewBounds=" +"{\"leftBottom\" : {\"x\":" + left +",\"y\":" + bottom +"},\"rightTop\" : {\"x\":" + right +",\"y\":" +top + "}}";
 | 
						||
        tileUrl +="&scale=" +scales[z];
 | 
						||
        var epsg=projection==="3857"?3857:4326;
 | 
						||
        tileUrl += "&prjCoordSys={\"epsgCode\":"+epsg+"}";
 | 
						||
        return tileUrl;
 | 
						||
    }
 | 
						||
    return tileLayer;
 | 
						||
}
 | 
						||
/**
 | 
						||
 * APIMethod:
 | 
						||
 * 将其他坐标系下的点转换为高德地图的点
 | 
						||
 * @param array 点数组,支持四种形式的点:
 | 
						||
 * 1、var points = [
 | 
						||
 *                          {x:116.1,y:38.9},
 | 
						||
 *                          {x:114.1,y:34.1}
 | 
						||
 *                          ];
 | 
						||
 * 2、var points = [
 | 
						||
 *                          new SuperMap.Geometry.Point(116.1,38.9),
 | 
						||
 *                          new SuperMap.Geometry.Point(116.1,38.9)
 | 
						||
 *                          ];
 | 
						||
 * 3、var points = [
 | 
						||
 *                          new SuperMap.LonLat(116.1,38.9),
 | 
						||
 *                          new SuperMap.LonLat(116.1,38.4)
 | 
						||
 *                          ];
 | 
						||
 * 4、var points = [
 | 
						||
 *                          new AMap.LngLat(116.404, 39.915),
 | 
						||
 *                         new AMap.LngLat(39.9,116.35)
 | 
						||
 *                          ];
 | 
						||
 * @param projection  {SuperMap.Projection} 待转换点的投影系(数组里面的所有点投影系都必须是统一的),默认为4326.
 | 
						||
 * @returns {Array} Amap.LatLng对象的数组
 | 
						||
 */
 | 
						||
SuperMap.Web.iConnector.AMap.transferPoint = function(array,projection){
 | 
						||
 | 
						||
    if((typeof array) == "object" && array != null && array.constructor == Array)
 | 
						||
    {
 | 
						||
        var pro = projection || new SuperMap.Projection("EPSG:4326");
 | 
						||
        var points = []
 | 
						||
        //分几种不同的情况,现在只提供两种
 | 
						||
        for(var i = 0;i<array.length;i++)
 | 
						||
        {
 | 
						||
            var smPoint;
 | 
						||
            if(array[i].CLASS_NAME && array[i].CLASS_NAME == "SuperMap.LonLat")
 | 
						||
            {
 | 
						||
                //首先转换为标准4326的坐标
 | 
						||
                smPoint =  SuperMap.Projection.transform(new SuperMap.Geometry.Point(array[i].lon,array[i].lat),pro,new SuperMap.Projection("EPSG:4326"));
 | 
						||
            }
 | 
						||
            //支持{x:118,y:38}和SuperMap.Geometry.Point的形式,因为都存在x和y
 | 
						||
            else if(array[i].x != undefined && array[i].y != undefined)
 | 
						||
            {
 | 
						||
                //首先转换为标准4326的坐标
 | 
						||
                smPoint =  SuperMap.Projection.transform(new SuperMap.Geometry.Point(array[i].x,array[i].y),projection,new SuperMap.Projection("EPSG:4326"));
 | 
						||
 | 
						||
            }
 | 
						||
 | 
						||
            //支持AMap.LngLat的形式
 | 
						||
            else if(array[i].getLng != undefined && array[i].getLat != undefined)
 | 
						||
            {
 | 
						||
                //首先转换为标准4326的坐标
 | 
						||
                smPoint =  SuperMap.Projection.transform(new SuperMap.Geometry.Point(array[i].getLng(),array[i].getLat()),projection,new SuperMap.Projection("EPSG:4326"));
 | 
						||
 | 
						||
            }
 | 
						||
            var point =new AMap.LngLat(smPoint.x,smPoint.y);
 | 
						||
            points.push(point);
 | 
						||
        }
 | 
						||
        return  points;
 | 
						||
    }
 | 
						||
}
 | 
						||
/**
 | 
						||
 * APIMethod:
 | 
						||
 * 将其他坐标系下的线数组转换为高德地图支持的线数组
 | 
						||
 * @param array 线数组,支持两种形式
 | 
						||
 * 1、var lines = [new SuperMap.Geometry.LineString(
 | 
						||
 *                          new SuperMap.Geometry.Point(116.1,38.9),
 | 
						||
 *                          new SuperMap.Geometry.Point(116.1,38.9)
 | 
						||
 *                          )];
 | 
						||
 * 2、var lines = [new   AMap.Polyline(
 | 
						||
 *                           new AMap.LngLat(116.3 ,39.9)
 | 
						||
 *                           new AMap.LngLat(116.3 ,38.9)
 | 
						||
 *                          )];
 | 
						||
 * @param projection  {SuperMap.Projection} 需要转换的线的坐标系
 | 
						||
 * @returns {Array} 返回AMap.Polyline对象的数组
 | 
						||
 */
 | 
						||
SuperMap.Web.iConnector.AMap.transferLine = function(array,projection){
 | 
						||
    if((typeof array) == "object" && array != null && array.constructor == Array)
 | 
						||
    {
 | 
						||
        var pro = projection || new SuperMap.Projection("EPSG:4326");
 | 
						||
        var lines = [];
 | 
						||
        //分几种不同的情况,现在只提供两种
 | 
						||
        for(var i = 0;i<array.length;i++)
 | 
						||
        {
 | 
						||
            var line;
 | 
						||
            //支持supermap的LineString
 | 
						||
            if(array[i].CLASS_NAME && array[i].CLASS_NAME == "SuperMap.Geometry.LineString")
 | 
						||
            {
 | 
						||
                var points = SuperMap.Web.iConnector.AMap.transferPoint(array[i].components,pro);
 | 
						||
                line = new AMap.Polyline({path:points,strokeColor:"#87CEFF"});
 | 
						||
            }
 | 
						||
            //支持AMap.Polyline的对象
 | 
						||
            else if(array[i].constructor == AMap.Polyline)
 | 
						||
            {
 | 
						||
                var points = SuperMap.Web.iConnector.AMap.transferPoint(array[i].getLngLats(),pro);
 | 
						||
                line = new  AMap.Polyline({path:points,strokeColor:"#87CEFF"});
 | 
						||
            }
 | 
						||
            lines.push(line);
 | 
						||
        }
 | 
						||
        return lines;
 | 
						||
    }
 | 
						||
}
 | 
						||
/**
 | 
						||
 * APIMethod:
 | 
						||
 * 将其他坐标系下的多边形数组转换为高德地图支持的多边形数组
 | 
						||
 * @param array 多边形数组,支持两种形式:
 | 
						||
 * 1、var polygons = [new SuperMap.Geometry.Polygon(
 | 
						||
 *                                [new SuperMap.Geometry.LinearRing(
 | 
						||
 *                                    new SuperMap.Geometry.Point(116.3786889372559,39.90762965106183),
 | 
						||
 *                                    new SuperMap.Geometry.Point(116.38632786853032,39.90795884517671),
 | 
						||
 *                                    new SuperMap.Geometry.Point(116.38534009082035,39.897432133833574),
 | 
						||
 *                                    new SuperMap.Geometry.Point(116.37624058825688,39.89789300648029)
 | 
						||
 *                                  )
 | 
						||
 *                           ]
 | 
						||
 *                        )];
 | 
						||
 * 2、var polygons = [ new AMap.Polygon(
 | 
						||
 *                                   new AMap.LngLat(116.3786889372559,39.90762965106183),
 | 
						||
 *                                   new AMap.LngLat(116.38632786853032,39.90795884517671),
 | 
						||
 *                                  new AMap.LngLat(116.38534009082035,39.897432133833574),
 | 
						||
 *                                  new AMap.LngLat(116.37624058825688,39.89789300648029)
 | 
						||
 *                          )];
 | 
						||
 * @param projection {SuperMap.Projection} 需要转换的多边形的坐标系
 | 
						||
 * @returns {Array} 返回AMap.Polygon对象的数组
 | 
						||
 */
 | 
						||
SuperMap.Web.iConnector.AMap.transferPolygon = function(array,projection){
 | 
						||
    if((typeof array) == "object" && array != null && array.constructor == Array)
 | 
						||
    {
 | 
						||
        var pro = projection || new SuperMap.Projection("EPSG:4326");
 | 
						||
        var polygons = [];
 | 
						||
        //分几种不同的情况,现在只提供两种
 | 
						||
        for(var i = 0;i<array.length;i++)
 | 
						||
        {
 | 
						||
            var polygon;
 | 
						||
            //支持supermap的Polygon
 | 
						||
            if(array[i].CLASS_NAME && array[i].CLASS_NAME == "SuperMap.Geometry.Polygon")
 | 
						||
            {
 | 
						||
                var points = SuperMap.Web.iConnector.AMap.transferPoint(array[i].getVertices(false),pro);
 | 
						||
                polygon = new AMap.Polygon({path:points, fillColor:"#87CEFF"});
 | 
						||
            }
 | 
						||
 | 
						||
            //支持AMap.Polygon的对象
 | 
						||
            else if(array[i].constructor  == AMap.Polygon)
 | 
						||
            {
 | 
						||
                var points = SuperMap.Web.iConnector.AMap.transferPoint(array[i].getLngLats(),pro);
 | 
						||
                polygon = new AMap.Polygon({path:points,strokeColor:"#87CEFF"});
 | 
						||
            }
 | 
						||
 | 
						||
            polygons.push(polygon);
 | 
						||
        }
 | 
						||
        return polygons;
 | 
						||
    }
 | 
						||
}
 | 
						||
 |