vue-geojson-view-ts 1.3.5 → 1.3.7
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
|
@@ -152,6 +152,7 @@ export default defineComponent({
|
|
|
152
152
|
iconUrl: "/image/gmap01.png",
|
|
153
153
|
iconSize: [25, 41],
|
|
154
154
|
iconAnchor: [12, 41],
|
|
155
|
+
scale: 1,
|
|
155
156
|
class: "",
|
|
156
157
|
type: "image",
|
|
157
158
|
},
|
|
@@ -257,12 +258,13 @@ export default defineComponent({
|
|
|
257
258
|
const zIndex: any = 1;
|
|
258
259
|
const iconStyle = new Style({
|
|
259
260
|
image: new Icon({
|
|
260
|
-
opacity: 1,
|
|
261
|
+
// opacity: 1,
|
|
261
262
|
src: this.configurationMap?.iconMarker?.iconUrl,
|
|
262
263
|
color: this.configurationMap.iconMarker?.color,
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
264
|
+
scale: this.configurationMap.iconMarker.scale,
|
|
265
|
+
// // img: this.configurationMap.iconMarker.image,
|
|
266
|
+
// width: this.configurationMap?.iconMarker.iconSize[0],
|
|
267
|
+
// height: this.configurationMap?.iconMarker.iconSize[1],
|
|
266
268
|
}),
|
|
267
269
|
zIndex: zIndex,
|
|
268
270
|
});
|