mapping-component-package-jp 0.1.0 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AzuriteConfig +1 -0
- package/__azurite_db_table__.json +1 -0
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/js/mapEncapsulation/mapOverlayManager.js +1 -1
- package/src/js/mapEncapsulation/shapes/circle.sector.js +26 -26
- package/src/js/mapEncapsulation/shapes/circle.segment.js +25 -26
- package/src/js/mapEncapsulation/shapes/polygon.customedit.js +479 -393
package/package.json
CHANGED
|
@@ -196,6 +196,32 @@ export class IQLCircleSector {
|
|
|
196
196
|
scale: 1,
|
|
197
197
|
id: 'centerIcon'
|
|
198
198
|
};
|
|
199
|
+
|
|
200
|
+
var startPinIcon = {
|
|
201
|
+
path: 'M4 4m-4,0a4,4,0 0,1 8,0a 4,4 0 0,1 -8,0z',
|
|
202
|
+
fillColor: '#ffffff',
|
|
203
|
+
fillOpacity: 1,
|
|
204
|
+
anchor: new google.maps.Point(4, 4),
|
|
205
|
+
strokeWeight: 1,
|
|
206
|
+
strokeOpacity: 1,
|
|
207
|
+
strokeColor: '#303030',
|
|
208
|
+
scale: 1,
|
|
209
|
+
id: 'startPinIcon'
|
|
210
|
+
};
|
|
211
|
+
|
|
212
|
+
var endPinIcon = {
|
|
213
|
+
path: 'M4 4m-4,0a4,4,0 0,1 8,0a 4,4 0 0,1 -8,0z',
|
|
214
|
+
fillColor: '#ffffff',
|
|
215
|
+
fillOpacity: 1,
|
|
216
|
+
anchor: new google.maps.Point(4, 4),
|
|
217
|
+
strokeWeight: 1,
|
|
218
|
+
strokeOpacity: 1,
|
|
219
|
+
strokeColor: '#303030',
|
|
220
|
+
scale: 1,
|
|
221
|
+
id: 'endPinIcon'
|
|
222
|
+
};
|
|
223
|
+
|
|
224
|
+
|
|
199
225
|
}
|
|
200
226
|
|
|
201
227
|
/*
|
|
@@ -222,32 +248,6 @@ export class IQLCircleSector {
|
|
|
222
248
|
id: 'handleIcon'
|
|
223
249
|
};
|
|
224
250
|
*/
|
|
225
|
-
/*
|
|
226
|
-
var startPinIcon = {
|
|
227
|
-
path: 'M4 4m-4,0a4,4,0 0,1 8,0a 4,4 0 0,1 -8,0z',
|
|
228
|
-
fillColor: '#ffffff',
|
|
229
|
-
fillOpacity: 1,
|
|
230
|
-
anchor: new google.maps.Point(4, 4),
|
|
231
|
-
strokeWeight: 1,
|
|
232
|
-
strokeOpacity: 1,
|
|
233
|
-
strokeColor: cs.strokeColor,
|
|
234
|
-
scale: 1,
|
|
235
|
-
id: 'startPinIcon'
|
|
236
|
-
};
|
|
237
|
-
*/
|
|
238
|
-
/*
|
|
239
|
-
var endPinIcon = {
|
|
240
|
-
path: 'M4 4m-4,0a4,4,0 0,1 8,0a 4,4 0 0,1 -8,0z',
|
|
241
|
-
fillColor: '#ffffff',
|
|
242
|
-
fillOpacity: 1,
|
|
243
|
-
anchor: new google.maps.Point(4, 4),
|
|
244
|
-
strokeWeight: 1,
|
|
245
|
-
strokeOpacity: 1,
|
|
246
|
-
strokeColor: cs.strokeColor,
|
|
247
|
-
scale: 1,
|
|
248
|
-
id: 'endPinIcon'
|
|
249
|
-
};
|
|
250
|
-
*/
|
|
251
251
|
|
|
252
252
|
function DistanceWidget(map, cs) {
|
|
253
253
|
|
|
@@ -206,6 +206,31 @@ export class IQLCircleSegment {
|
|
|
206
206
|
scale: 1,
|
|
207
207
|
id: 'centerIcon'
|
|
208
208
|
};
|
|
209
|
+
|
|
210
|
+
var startPinIcon = {
|
|
211
|
+
path: 'M4 4m-4,0a4,4,0 0,1 8,0a 4,4 0 0,1 -8,0z',
|
|
212
|
+
fillColor: '#ffffff',
|
|
213
|
+
fillOpacity: 1,
|
|
214
|
+
anchor: new google.maps.Point(4, 4),
|
|
215
|
+
strokeWeight: 1,
|
|
216
|
+
strokeOpacity: 1,
|
|
217
|
+
strokeColor: '#303030',
|
|
218
|
+
scale: 1,
|
|
219
|
+
id: 'startPinIcon'
|
|
220
|
+
};
|
|
221
|
+
|
|
222
|
+
var endPinIcon = {
|
|
223
|
+
path: 'M4 4m-4,0a4,4,0 0,1 8,0a 4,4 0 0,1 -8,0z',
|
|
224
|
+
fillColor: '#ffffff',
|
|
225
|
+
fillOpacity: 1,
|
|
226
|
+
anchor: new google.maps.Point(4, 4),
|
|
227
|
+
strokeWeight: 1,
|
|
228
|
+
strokeOpacity: 1,
|
|
229
|
+
strokeColor: '#303030',
|
|
230
|
+
scale: 1,
|
|
231
|
+
id: 'endPinIcon'
|
|
232
|
+
};
|
|
233
|
+
|
|
209
234
|
}
|
|
210
235
|
|
|
211
236
|
|
|
@@ -232,32 +257,6 @@ export class IQLCircleSegment {
|
|
|
232
257
|
scale: 1,
|
|
233
258
|
id: 'handleIcon'
|
|
234
259
|
};
|
|
235
|
-
*/
|
|
236
|
-
/*
|
|
237
|
-
var startPinIcon = {
|
|
238
|
-
path: 'M4 4m-4,0a4,4,0 0,1 8,0a 4,4 0 0,1 -8,0z',
|
|
239
|
-
fillColor: '#ffffff',
|
|
240
|
-
fillOpacity: 1,
|
|
241
|
-
anchor: new google.maps.Point(4, 4),
|
|
242
|
-
strokeWeight: 1,
|
|
243
|
-
strokeOpacity: 1,
|
|
244
|
-
strokeColor: cs.strokeColor,
|
|
245
|
-
scale: 1,
|
|
246
|
-
id: 'startPinIcon'
|
|
247
|
-
};
|
|
248
|
-
*/
|
|
249
|
-
/*
|
|
250
|
-
var endPinIcon = {
|
|
251
|
-
path: 'M4 4m-4,0a4,4,0 0,1 8,0a 4,4 0 0,1 -8,0z',
|
|
252
|
-
fillColor: '#ffffff',
|
|
253
|
-
fillOpacity: 1,
|
|
254
|
-
anchor: new google.maps.Point(4, 4),
|
|
255
|
-
strokeWeight: 1,
|
|
256
|
-
strokeOpacity: 1,
|
|
257
|
-
strokeColor: cs.strokeColor,
|
|
258
|
-
scale: 1,
|
|
259
|
-
id: 'endPinIcon'
|
|
260
|
-
};
|
|
261
260
|
*/
|
|
262
261
|
function DistanceWidget(map, cs) {
|
|
263
262
|
|