mapping-component-package-jp 0.1.4 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mapping-component-package-jp",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -899,7 +899,7 @@ export class MapOverlayManager {
899
899
  zIndex: 10100,
900
900
  clickable: true,
901
901
  editable: false,
902
- draggable: false,
902
+ draggable: true,
903
903
  isPolygon: true,
904
904
  isCircle: false,
905
905
  isCircleSector: false,
@@ -204,7 +204,7 @@ export class IQLCircleSector {
204
204
  anchor: new google.maps.Point(4, 4),
205
205
  strokeWeight: 1,
206
206
  strokeOpacity: 1,
207
- strokeColor: cs.strokeColor,
207
+ strokeColor: '#303030',
208
208
  scale: 1,
209
209
  id: 'startPinIcon'
210
210
  };
@@ -216,7 +216,7 @@ export class IQLCircleSector {
216
216
  anchor: new google.maps.Point(4, 4),
217
217
  strokeWeight: 1,
218
218
  strokeOpacity: 1,
219
- strokeColor: cs.strokeColor,
219
+ strokeColor: '#303030',
220
220
  scale: 1,
221
221
  id: 'endPinIcon'
222
222
  };
@@ -247,10 +247,6 @@ export class IQLCircleSector {
247
247
  scale: 1,
248
248
  id: 'handleIcon'
249
249
  };
250
- */
251
- /*
252
- */
253
- /*
254
250
  */
255
251
 
256
252
  function DistanceWidget(map, cs) {
@@ -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