1.代码

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">

    <title>Visualize points with a heatmap - 4.9</title>

    <link rel="stylesheet" href="http://localhost:8080/arcgis_js_api/library/4.9/esri/css/main.css">

    <style>
        html,
        body,
        #viewDiv {
            padding: 0;
            margin: 0;
            height: 100%;
            width: 100%;
        }
    </style>

    <script src="http://localhost:8080/arcgis_js_api/library/4.9/init.js"></script>

    <script>
        require([
            "esri/Map",
            "esri/layers/CSVLayer",
            "esri/views/MapView",
            "esri/widgets/Legend",
            "esri/layers/FeatureLayer",
            "esri/layers/WebTileLayer",
        ], function(
            Map,
            CSVLayer,
            MapView,
            Legend,
            FeatureLayer,
            WebTileLayer
        ) {
            // 天地图矢量
            const vec_w = new WebTileLayer({
                urlTemplate:'http://t0.tianditu.com/DataServer?T=vec_w&x={col}&y={row}&l={level}&tk=02801311f98d845c66cfb48af037e949'
            })
            //天地图中文注记
            const cva_w = new WebTileLayer({
                urlTemplate:'http://t0.tianditu.com/DataServer?T=cva_w&x={col}&y={row}&l={level}&tk=02801311f98d845c66cfb48af037e949'
            })
            var quakesUrl =
                "http://localhost:6080/arcgis/rest/services/hotel/FeatureServer/0";

            const template = {
                title: "{NAME}",
                content: " 地址:{ADDR} <br>区域:{AREANAME} "
            };

            // The heatmap renderer assigns each pixel in the view with
            // an intensity value. The ratio of that intensity value
            // to the maxPixel intensity is used to assign a color
            // from the continuous color ramp in the colorStops property

            const renderer = {    //'#00f', '#0ff', '#0f0', '#ff0', '#f00'
                type: "heatmap",
                colorStops: [
                    {
                        color: "rgba(63, 40, 102, 0)",
                        ratio: 0
                    },
                    {
                        color: "#00f",
                        ratio: 0.183
                    },
                    {
                        color: "#0ff",
                        ratio: 0.266
                    },
                    {
                        color: "#0f0",
                        ratio: 0.549
                    },
                    {
                        color: "#ff0",
                        ratio: 0.732
                    },
                    {
                        color: "#f00",
                        ratio: 0.915
                    }],
                maxPixelIntensity: 120,
                minPixelIntensity: 0
            };


            var wellsLayer = new FeatureLayer({
                url: quakesUrl,
                outFields: ["*"],
                popupTemplate: template,
                renderer: renderer
            })

            const map = new Map({
                basemap: "gray",
                layers: [vec_w,cva_w,wellsLayer]
            });

            const view = new MapView({
                container: "viewDiv",
                center:[123.5,41.8],
                zoom: 11,
                map: map
            });

            view.ui.add(new Legend({
                view: view
            }), "bottom-left");

        });
    </script>
</head>

<body>
<div id="viewDiv"></div>
</body>

</html>

2.结果

arcgis js api 4.9显示热力图

相关文章:

  • 2021-10-17
  • 2021-08-10
  • 2021-11-22
  • 2021-09-01
  • 2022-03-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-26
  • 2021-11-30
  • 2022-12-23
  • 2021-11-28
  • 2021-11-10
  • 2021-03-26
  • 2021-12-10
相关资源
相似解决方案