// not working example
// i dont know how to export GreatEnum
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { GreatComponent } from './great.component';
import { GreatEnum } from './great.enum';
@NgModule({
imports: [
CommonModule
],
declarations: [GreatComponent ],
exports: [GreatComponent ]
})
export class GreatModule {
}
我想为地区而不是纬度和经度提供地址。
答案 0 :(得分:1)
你可以链接http://maps.google.com/maps/api/geocode/json?address=
fetch('http://maps.google.com/maps/api/geocode/json?address=' + 'turkey').then(res => this.setState({region: res.result.geometry.location}));
也就是说,你发送地址,它会返回你json
答案 1 :(得分:0)
你应该使用一些东西来解码lat,lng到可读的地址我使用这个库react-native-geocoder