ARC GIS API for JS learning essay binding event mouse action

Source: Internet
Author: User

1 var map;2 require (["Esri/map", "dojo/domready!"], function (map) {3 map = new Map ("GHL", {4                     5 Zoom:3,6 basemap: "Topo",7 Logo:false,8                     9                     Ten                 }); One dojo.connect (map, "OnMouseMove", function (e) { A var MP = E.mappoint; - var sp = e.screenpoint; - Dojo.byid ("Map1"). InnerHTML = mp.x+ "/" +sp.x;  the Dojo.byid ("Map2"). InnerHTML = mp.y+ "/" +SP.Y;  -             }) -             }); -              +          -         </Script> +     <Body> A     <DivID= "GHL"></Div> at     <DivID= "Map1"></Div> -     <DivID= "Map2"></Div>
View Code
The main key is to add a method for binding events Dojo.connect
This example shows that when the mouse slides on the map, two different coordinates will be displayed!

<script>
var map;
Require (["Esri/map", "dojo/domready!"], function (map) {
Map = new Map ("GHL", {

Zoom:3,
Basemap: "Topo",
Logo:false,


});
Dojo.connect (Map, "OnMouseMove", function (e) {
var MP = E.mappoint;
var sp = E.screenpoint;
Dojo.byid ("Map1"). InnerHTML = mp.x+ "/" +sp.x;
Dojo.byid ("Map2"). InnerHTML = mp.y+ "/" +SP.Y;
})
});


</script>
<body>
<div id= "GHL" ></div>
<div id= "Map1" ></div>
<div id= "MAP2" ></div>
</body>

ARC GIS API for JS learning essay binding event mouse action

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.