Removed locator rectangle edges since they overlap.

This commit is contained in:
Marat Fayzullin 2023-10-06 23:16:49 -04:00
parent 7922b3950c
commit ef9618a4bb
2 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ GSimpleMarker.prototype.setMarkerOptions = function(options) {
function GLocator() {
this.rect = new google.maps.Rectangle();
this.rect.setOptions({
strokeWeight : 2,
strokeWeight : 0,
strokeColor : "#FFFFFF",
fillColor : "#FFFFFF"
});

View File

@ -76,7 +76,7 @@ function LSimpleMarker() { $.extend(this, new LMarker(), new AprsMarker()); }
//
function LLocator() {
this._rect = L.rectangle([[0,0], [1,1]], { color: '#FFFFFF', weight: 2, opacity: 1 });
this._rect = L.rectangle([[0,0], [1,1]], { color: '#FFFFFF', weight: 0, opacity: 1 });
}
LLocator.prototype = new Locator();