Removed locator rectangle edges since they overlap.
This commit is contained in:
parent
7922b3950c
commit
ef9618a4bb
|
|
@ -127,7 +127,7 @@ GSimpleMarker.prototype.setMarkerOptions = function(options) {
|
||||||
function GLocator() {
|
function GLocator() {
|
||||||
this.rect = new google.maps.Rectangle();
|
this.rect = new google.maps.Rectangle();
|
||||||
this.rect.setOptions({
|
this.rect.setOptions({
|
||||||
strokeWeight : 2,
|
strokeWeight : 0,
|
||||||
strokeColor : "#FFFFFF",
|
strokeColor : "#FFFFFF",
|
||||||
fillColor : "#FFFFFF"
|
fillColor : "#FFFFFF"
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -76,7 +76,7 @@ function LSimpleMarker() { $.extend(this, new LMarker(), new AprsMarker()); }
|
||||||
//
|
//
|
||||||
|
|
||||||
function LLocator() {
|
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();
|
LLocator.prototype = new Locator();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue