openlayers经纬度转屏幕坐标
centerLon ,centerLat 为获取到的经纬度;
dx ,dy为该点相对于地图左上角的像素差
tmap.div.offsets[0],tmap.div.offsets[1] 为地图左上角的屏幕坐标。
PosX, PosY 为该经纬度的屏幕坐标。
IE,360,firefox,google浏览器测试通过。
var feature = e.feature;
var tmap = feature.layer.map;
//通过div实现,未完成,IE和firefox都不对
var bounds = feature.geometry.bounds;
var centerLon = (bounds.left + bounds.right) / 2.0;
var centerLat = (bounds.bottom + bounds.top) / 2.0;
var resolution = tmap.getResolution();
var extent = tmap.getExtent();
var size = tmap.size;
var dx =parseInt( size.w * (centerLon - extent.left) / (extent.right - extent.left));
var dy = parseInt(size.h * (centerLat - extent.top) / (extent.bottom - extent.top));
var PosX = tmap.div.offsets[0] + dx;
var PosY = tmap.div.offsets[1] + dy;
/*
var isIE = (document.all) ? true : false;
var PosX = isIE ? event.x : e.pageX;
var PosY = isIE ? event.y : e.pageY;*/
//添加一个热区div
var hotspotdiv = document.getElementById(_hotspotdivid);
hotspotdiv.innerHTML = feature.attributes["Title"];
hotspotdiv.style.left = PosX + "px";
hotspotdiv.style.top = PosY + "px";
hotspotdiv.style.position = "absolute";
hotspotdiv.style.visibility = "visible";
专业从事基于C#,WinForm ,WPF,Silverlight,WCF以及MS Sql Server 2000/2005/2008/2012 Oracle 9i/10g/11g数据库系统的ERP,CRM,企业进销存等各种数据库管理系统开发。Asp.net,Asp.net mvc,Webservice,WCF, Webapi等服务程序开发。
基于Oracle MySQL MSSql postgresql各种数据库的管理系统数据同步服务。以及基于MapXtreme, Arcgis Engine ,以及基于Arcgis for silverlight/Javascript的WebGIS等相关的GIS系统二次开发。基于Windows 10 Mobile的移动端开发方案。针对各种系统的二次开发维护,并提供相关开发的技术性支持,如程序BUG解决,应用系统架构,技术难题攻克等相关技术服务。
联系方式: QQ :80163278(devgis) 邮箱:devgis@qq.com