summaryrefslogtreecommitdiff
path: root/htdocs/leafletjs/Leaflet.streetlabels.js
blob: 8685ac917ee1d60e303a732e053d4d7d748cfbbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
 * 
 * 
*/
L.StreetLabels = L.LabelTextCollision
    .extend({

        options: {
            /**
             * Default property name to display the tooltip
             */
            propertyName: 'name',
            showLabelIf: null,
            fontStyle: {
                dynamicFontSize: false,
                fontSize: 10,
                fontSizeUnit: "px",
                lineWidth: 4.0,
                fillStyle: "black",
                strokeStyle: "white",
            },
        },

        initialize: function (options) {
            L.LabelTextCollision.prototype.initialize.call(this, options);
            L.Util.stamp(this);
            this._layers = this._layers || {};
        },

        _initContainer: function (options) {
            L.LabelTextCollision.prototype._initContainer.call(this, options);

            //Register the add/remove layers event to update the annotations accordingly
            if (this._map) {
                var handleLayerChanges = function () {
                    this._reset();
                    this._redraw();
                }.bind(this);
                this._map.on("layerremove", L.Util.throttle(handleLayerChanges, 32, this));
            }
        },

        _text: function (ctx, layer) {

            if (layer && layer.feature && layer.feature.properties && layer.feature.properties[this.options.propertyName] !== 'undefined') {

                if (this.options.showLabelIf) {
                    if (this.options.showLabelIf.call(this, layer.feature) === false) {
                        return;
                    }
                }

                var layerText = layer.feature.properties[this.options.propertyName];
                ctx.globalAlpha = 1;
                var p;

                // polygon or polyline
                if (layer._parts.length === 0 || layer._parts[0].length === 0) {
                    return;
                }

                if (layer instanceof L.Polygon && this._map.hasLayer(layer)) {
                    p = this._getCentroid(layer);
                }
                else {
                    p = this._getCenter(layer._parts[0]);
                }

                if (!p) {
                    return;
                }

                // label bounds offset
                var offsetX = 0;
                var offsetY = 0;

                /**
                 * TODO setting for custom font
                 */
                ctx.lineWidth = this.options.fontStyle.lineWidth;

                var fontSize = this.options.fontStyle.fontSize;

                if (this._map && this.options.fontStyle.dynamicFontSize === true) {
                    fontSize = this._getDynamicFontSize();

                }

                ctx.font = fontSize + this.options.fontStyle.fontSizeUnit + " 'Helvetica Neue',Helvetica,Arial,sans-serif";

                // Collision detection
                var textWidth = (ctx.measureText(layerText).width) + p.x;// + offsetX;

                var textHeight = p.y + offsetY + 20;

                var bounds = L.bounds(
                    L.point(p.x + offsetX, p.y + offsetY), L.point(
                        textWidth, textHeight));

                if (this.options.collisionFlg) {

                    for (var index in this._textList) {
                        var pointBounds = this._textList[index];
                        if (pointBounds.intersects(bounds)) {
                            return;
                        }
                    }
                }

                this._textList.push(bounds);


                ctx.fillStyle = this.options.fontStyle.fillStyle;
                ctx.strokeStyle = this.options.fontStyle.strokeStyle;

                if (layer instanceof L.Polygon || layer instanceof L.CircleMarker) {
                    var textLength = ctx.measureText(layerText).width;
                    ctx.strokeText(layerText, p.x + offsetX - textLength / 2, p.y + offsetY);
                    ctx.fillText(layerText, p.x + offsetX - textLength / 2, p.y + offsetY);
                }
                if (layer instanceof L.Polyline) {
                    /**
                     * Render text alongside the polyline 
                     * **/
                    var startCoords = layer.getLatLngs()[0];
                    var stopCoords = layer.getLatLngs()[layer.getLatLngs().length - 1];

                    //Flip lineString if bearing is negative
                    if (this._getBearing(startCoords, stopCoords) < 0)
                        layer = this._getLineStringReverse(layer);

                    if (layer._parts) {
                        ctx.textAlign = "center";
                        ctx.textBaseline = "middle";
                        ctx.lineWidth = 3;
                        layer._parts.forEach(function (part) {
                            //Build the points list for the first part
                            var pathPoints = [];
                            for (var i = 0; i < part.length; i++) {
                                var linePart = part[i];
                                pathPoints.push(linePart.x);
                                pathPoints.push(linePart.y);
                            }

                            ctx.textPath(layerText, pathPoints);
                        });
                    }
                }
            }
        },

        /***
         * Returns the bearing in degrees clockwise from north (0 degrees)
            from the first L.LatLng to the second, at the first LatLng
            @param {L.LatLng} latlng1: origin point of the bearing
            @param {L.LatLng} latlng2: destination point of the bearing
            @returns {float} degrees clockwise from north.
            Source: https://makinacorpus.github.io/Leaflet.GeometryUtil/leaflet.geometryutil.js.html
         */
        _getBearing: function (startCoords, stopCoords) {
            var rad = Math.PI / 180,
                lat1 = startCoords.lat * rad,
                lat2 = stopCoords.lat * rad,
                lon1 = startCoords.lng * rad,
                lon2 = stopCoords.lng * rad,
                y = Math.sin(lon2 - lon1) * Math.cos(lat2),
                x = Math.cos(lat1) * Math.sin(lat2) -
                    Math.sin(lat1) * Math.cos(lat2) * Math.cos(lon2 - lon1);
            var bearing = ((Math.atan2(y, x) * 180 / Math.PI) + 360) % 360;
            return bearing >= 180 ? bearing - 360 : bearing;
        },

        /**
         Returns a clone with reversed coordinates.
            @param {L.PolyLine} polyline polyline to reverse
            @returns {L.PolyLine} polyline reversed
            Source: https://makinacorpus.github.io/Leaflet.GeometryUtil/leaflet.geometryutil.js.html
         */
        _getLineStringReverse: function (polyline) {
            var latLngs = polyline.getLatLngs().slice(0).reverse();
            polyline.setLatLngs(latLngs);
            return polyline;
        },

        _getDynamicFontSize: function () {
            return parseInt(this._map.getZoom());
        },

        _getCentroid: function (layer) {
            if (layer && layer.getCenter && this._map) {
                var latlngCenter = layer.getCenter();
                var containerPoint = this._map.latLngToContainerPoint(latlngCenter);
                return this._map.containerPointToLayerPoint(containerPoint);
            }
        },
    });