We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69a0f3d commit 242c353Copy full SHA for 242c353
1 file changed
src/ios/GoogleMaps/KmlOverlay.m
@@ -405,8 +405,10 @@ -(void)implementPlaceMarkToMap:(NSDictionary *)placeMarker
405
406
if ([tagName isEqualToString:@"linestring"]) {
407
targetClass = @"Polyline";
408
+ [*options setObject:[NSNumber numberWithInt:4] forKey:@"zIndex"];
409
} else {
410
targetClass = @"Polygon";
411
+ [*options setObject:[NSNumber numberWithInt:2] forKey:@"zIndex"];
412
}
413
[*options setObject:[NSNumber numberWithBool:true] forKey:@"visible"];
414
[*options setObject:[NSNumber numberWithBool:true] forKey:@"geodesic"];
0 commit comments