This repository was archived by the owner on Jun 23, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed
src/core/services/managers Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,8 @@ export class MarkerManager {
69
69
icon : marker . iconUrl ,
70
70
opacity : marker . opacity ,
71
71
visible : marker . visible ,
72
- zIndex : marker . zIndex
72
+ zIndex : marker . zIndex ,
73
+ title : marker . title
73
74
} ) ;
74
75
this . _markers . set ( marker , markerPromise ) ;
75
76
}
Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ export function main() {
36
36
icon : undefined ,
37
37
opacity : 1 ,
38
38
visible : true ,
39
- zIndex : 1
39
+ zIndex : 1 ,
40
+ title : undefined
40
41
} ) ;
41
42
} ) ) ;
42
43
} ) ;
@@ -81,7 +82,8 @@ export function main() {
81
82
icon : undefined ,
82
83
opacity : 1 ,
83
84
visible : true ,
84
- zIndex : 1
85
+ zIndex : 1 ,
86
+ title : undefined
85
87
} ) ;
86
88
const iconUrl = 'http://angular-maps.com/icon.png' ;
87
89
newMarker . iconUrl = iconUrl ;
@@ -112,7 +114,8 @@ export function main() {
112
114
icon : undefined ,
113
115
visible : true ,
114
116
opacity : 1 ,
115
- zIndex : 1
117
+ zIndex : 1 ,
118
+ title : undefined
116
119
} ) ;
117
120
const opacity = 0.4 ;
118
121
newMarker . opacity = opacity ;
@@ -144,7 +147,8 @@ export function main() {
144
147
icon : undefined ,
145
148
visible : false ,
146
149
opacity : 1 ,
147
- zIndex : 1
150
+ zIndex : 1 ,
151
+ title : undefined
148
152
} ) ;
149
153
newMarker . visible = true ;
150
154
return markerManager . updateVisible ( newMarker ) . then (
@@ -175,7 +179,8 @@ export function main() {
175
179
icon : undefined ,
176
180
visible : false ,
177
181
opacity : 1 ,
178
- zIndex : 1
182
+ zIndex : 1 ,
183
+ title : undefined
179
184
} ) ;
180
185
const zIndex = 10 ;
181
186
newMarker . zIndex = zIndex ;
You can’t perform that action at this time.
0 commit comments