GisShare.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /**
  2. * Created by Administrator on 2017/12/25.
  3. */
  4. function postToIframeMethed(methedName,data) {
  5. // if(typeof(exec_obj)=='undefined'){
  6. // exec_obj = document.createElement('iframe');
  7. // exec_obj.name = 'tmp_frame';
  8. // exec_obj.src = 'http://139.196.105.31/HKGisShare/ZoomIn.html';
  9. // exec_obj.style.display = 'none';
  10. // document.body.appendChild(exec_obj);
  11. // }else{
  12. // exec_obj.src = 'http://139.196.105.31/HKGisShare/ZoomIn.html?' + Math.random();
  13. // }
  14. var win = document.getElementsByTagName('iframe')[0].contentWindow;
  15. // var obj = { name: 'Jack' };
  16. // 存入对象
  17. win.postMessage(JSON.stringify({method: methedName, data: data}), 'http://10.214.3.150:8080/HKGisShare/');
  18. // 读取对象
  19. // win.postMessage(JSON.stringify({key: 'storage', method: "get"}), "*");
  20. window.onmessage = function(e) {
  21. if (e.origin != 'http://localhost') return;
  22. // "Jack"
  23. console.log(JSON.parse(e.data).name);
  24. };
  25. }
  26. function ZoomIn() {
  27. postToIframeMethed("ZoomIn")
  28. }
  29. function ZoomOut() {
  30. postToIframeMethed("ZoomOut")
  31. }
  32. function Clear() {
  33. postToIframeMethed("Clear")
  34. }
  35. function ViewChange() {
  36. postToIframeMethed("ViewChange")
  37. }
  38. function fullExtent() {
  39. postToIframeMethed("fullExtent")
  40. }
  41. function measureSquare() {
  42. postToIframeMethed("measureSquare")
  43. }
  44. function measureLength() {
  45. postToIframeMethed("measureLength")
  46. }
  47. function downLoadPicture() {
  48. postToIframeMethed("downLoadPicture")
  49. }
  50. function doGetGraphicByJson(jsonStr) {
  51. postToIframeMethed("doGetGraphicByJson",jsonStr)
  52. }
  53. function drawSquare() {
  54. postToIframeMethed("drawSquare")
  55. }
  56. function query(Str,layerName) {
  57. postToIframeMethed("query",[Str,layerName])
  58. }
  59. function doOpenFeatureLayer(layerId,layerVisible){
  60. postToIframeMethed("openFeatureLayer",[layerId,layerVisible])
  61. }
  62. function doOpenFeatureLayer1(layerVisible){
  63. postToIframeMethed("openFeatureLayer1",[layerVisible])
  64. }
  65. function doOpenFeatureLayer2(layerVisible){
  66. postToIframeMethed("openFeatureLayer2",[layerVisible])
  67. }
  68. function doOpenFeatureLayer3(layerVisible){
  69. postToIframeMethed("openFeatureLayer3",[layerVisible])
  70. }