Login/Auth and pariticipate. Telegram auth (wip)

This commit is contained in:
vjrj 2017-12-22 09:33:37 +01:00
parent 91b4197b04
commit 4227389a67
14 changed files with 161 additions and 48 deletions

View file

@ -74,7 +74,7 @@ class SelectionMap extends Component {
onFstBtn() {
this.props.onFstBtn({
location: { lat: this.state.center[0], lon: this.state.center[1] },
location: { lat: this.state.marker[0], lon: this.state.marker[1] },
distance: this.state.distance
});
}
@ -113,7 +113,7 @@ class SelectionMap extends Component {
fit() {
// console.log("fit!");
if (this.props.currentSubs.length > 0 && this.state.subsFit) {
if (this.props.currentSubs.length > 0 && this.state.subsFit && this.props.action !== action.add) {
// has autofit, do nothing
} else if (this.selectionMap && this.distanceCircle) {
if (!this.getMap().getBounds().contains(this.distanceCircle.leafletElement.getBounds())) {