arcgis.js controls the display range of the map body to automatically bounce back when it exceeds the area (implementation ideas)

arcgis.js controls the display range of the map body to automatically bounce back when it exceeds the area (implementation ideas)

background

A while ago, we encountered a problem in a company project. The map base map area only has a part of the range. If it exceeds the current range, a white background will be displayed, which is very bad in terms of usage effect. The accompanying requirements are that the map should be zoomed out, and when the mouse moves the map beyond the display range of the base map, the base map needs to rebound.

Effect

insert image description here

Ideas

1. arcgis.js controls its display range and automatically bounces back when it exceeds the base map display range. (1) After the map is created, use the listener event to listen to the map range change and call the shwoExtent method, which will pass the values ​​of the upper left and lower right corners of the map.

this.gisMap.on('extent-change',this.showExtent)

(2) Determine whether the current map display range exceeds the visible range of the map based on the full extent of the map's maximum display range. If it exceeds the range, the map's maximum range is displayed and the map rebounds.

Code snippet

// An highlighted block
let fullExtent = {
    xmin: xx,
    ymin: xx,
    xmax: xx,
    ymax: xx,
   }
showExtent(extS){
   let ext = extS.extent;  
    if (ext.xmin<this.fullExtent.xmin||ext.xmax>this.fullExtent.xmax||ext.ymax>this.fullExtent.ymax||ext.ymin<this.fullExtent.ymin) {
    let fullExtent = new esri.geometry.Extent(
     {
      ...this.fullExtent, 
      spatialReference:new esri.SpatialReference({ wkid: parseInt(4490) }) //SpatialReference sets the map coordinate system}
    );
    this.gisMap.setExtent(fullExtent);
   }
  },

Reference document: https://developers.arcgis.com/javascript/3/jsapi/extent-amd.html

Note: When consulting the documentation, you need to know what version of arcgis.js is used in the project.

This is the end of this article about arcgis.js controlling the display range of map bodies and automatically rebounding when the display range exceeds the area. For more relevant content about arcgis.js map display range, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • ArcGIS for js raster layer overlay (Raster Layer) problem
  • How to modify the infowindow style in arcgis for js
  • Realizing the effect of Baidu map ABCD marker based on ArcGIS for javascript

<<:  MySQL5.6.31 winx64.zip installation and configuration tutorial

>>:  Install and use Git and GitHub on Ubuntu Linux

Recommend

Several common methods for passing additional parameters when submitting a form

When submitting a form, you may encounter situatio...

Native JS to achieve draggable login box

This article shares a draggable login box impleme...

Quickly solve the problem that CentOS cannot access the Internet in VMware

Yesterday I installed CentOS7 under VMware. I wan...

A brief discussion on VUE uni-app template syntax

1.v-bind (abbreviation:) To use data variables de...

Vue elementUI implements tree structure table and lazy loading

Table of contents 1. Achieve results 2. Backend i...

Several ways to implement CSS height changing with width ratio

[Solution 1: padding implementation] principle: I...

JavaScript canvas implements moving the ball following the mouse

This article example shares the specific code of ...

Pricing table implemented with CSS3

Result: Implementation Code html <div id="...

How to build a MySQL high-availability and high-performance cluster

Table of contents What is MySQL NDB Cluster Preli...

A brief discussion on the solution to excessive data in ElementUI el-select

Table of contents 1. Scenario Description 2. Solu...

JavaScript implements the protocol example in which the user must check the box

In js, set the user to read a certain agreement b...

An example of how to quickly deploy web applications using Tomcat in Docker

After learning the basic operations of Docker, we...

How to modify the forgotten password when installing MySQL on Mac

1. Install MySQL database on mac 1. Download MySQ...

How to use worker_threads to create new threads in nodejs

Introduction As mentioned in the previous article...

The table merges cells and the img image to fill the entire td HTML

Source code (some classes deleted): Copy code The ...