Newer
Older
googleMap / src / app / home / home.page.ts
Jorge Andres Sanchez Carrillo on 30 Jun 2020 1 KB Se obtienen coordenadas de una direccion
import { Component, OnInit } from '@angular/core';
import { GooglemapService } from '../services/googlemap.service';

@Component({
  selector: 'app-home',
  templateUrl: 'home.page.html',
  styleUrls: ['home.page.scss'],
})
export class HomePage implements OnInit {

  public direccion: string = "";
  public lat = null;
  public lng = null;
  public groupname: string = "Cliente";
  public groups: boolean = false;
  public terms: boolean = true;
  ///
  /// Se agrego arreglo con abreviaturas de departamento y nombres de ciudad
  public data = {
    direccion:"",
    ciudad:"",
    numero:"",
    casa:"",
    departamento:[{
      id:0,
      nombre:"Medellin",
      abreviatura:"ANTQ"
    },
    {
      id:1,
      nombre:"Pamplona",
      abreviatura:"NS"
    }
  ],
    is_superuser: true
  };
  constructor(private googleMap: GooglemapService) {}

  ngOnInit(){
    this.dir();
  }

  dir(){
    this.googleMap.loadMap(this.data).then((data:any) => {
      
      this.direccion = data.dir;
      this.lat = data.lat;
      this.lng = data.lng;
    })
  }
  send(){

  }

}