Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

maptalks.esri

Package Overview
Dependencies
Maintainers
0
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

maptalks.esri

A maptalks plugin to load ESRI services

  • 0.5.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

maptalks.esri

A plugin to load ArcGIS service.

Demo

Install

npm i maptalks.esri --save

Usage

In Browser

<script src="https://unpkg.com/maptalks/dist/maptalks.js"></script>
<script src="https://unpkg.com/maptalks.esri/dist/maptalks.esri.js"></script>
<script type="text/javascript">
    const service = new maptalks.esri.FeatureLayerService(/* params */);
    const service1 = new maptalks.esri.ImageLayerService(/* params */);
</script>

ESM Module

import { FeatureLayerService, ImageLayerService } from 'maptalks.esri';
const service = new FeatureLayerService(/* params */);
const service1 = new ImageLayerService(/* params */);

Code samples

Load FeatureLayer Service

const service = new maptalks.esri.FeatureLayerService({
    url: 'https://sampleserver6.arcgisonline.com/arcgis/rest/services/Earthquakes_Since1970/MapServer/0',
    // 数据的坐标系,不设置时则默认使用map的坐标系,如果设置,则会按该坐标系转换为map的坐标系
    // projection: 'EPSG:3857',
    symbol: {
        markerType: 'ellipse',
        markerWidth: 12,
        markerHeight: 12,
        markerFill: '#f00',
        markerFillOpacity: 0.5,
        markerLineColor: '#000',
        markerLineWidth: 2
    }
});

const pointLayer = new maptalks.PointLayer('polygon');
const groupLayer = new maptalks.GroupGLLayer('group', [pointLayer]).addTo(map);

function query() {
    const extent = map.getExtent();
    const geometry = [extent.xmin, extent.ymin, extent.xmax, extent.ymax].join(',');
    service.query({
        geometry: geometry,
        geometryType: 'esriGeometryEnvelope'
    }).then(json => {
        json = JSON.parse(json);
        console.log('fetures count:', json.features.length);
        const geometries = service.toGeometry(json);
        pointLayer.clear();
        pointLayer.addGeometry(geometries);
                // map.setCenterAndZoom(extent.getCenter(), zoom);
    });
}
map.on('viewchange', query);
query();

Load Image Map Service


var service = new maptalks.esri.ImageLayerService({
    url: 'https://sampleserver6.arcgisonline.com/arcgis/rest/services/PoolPermits/MapServer/export',
    debug: true,
    map,
    // 数据的坐标系,不设置时则默认使用map的坐标系,如果设置,则会按该坐标系转换为map的坐标系
    // projection: 'EPSG:3857',
});

 var imageLayer = new maptalks.ImageLayer('imagemaplayer');
 map.addLayer(imageLayer);

function query() {
    service.query().then(json => {
        json = JSON.parse(json);
        if (json.href) {
            const extent = map.getExtent();
            const geometry = [extent.xmin, extent.ymin, extent.xmax, extent.ymax];
            imageLayer.setImages([{
                url: json.href,
                    extent: geometry
                }]);
        }
    })
}

 map.on('viewchange', query);
 query();

FAQs

Package last updated on 05 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc