使用地址而不是经度和纬度使用react-native-maps

时间:2017-09-26 06:34:49

标签: react-native react-native-maps

// 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 {
}

我想为地区而不是纬度和经度提供地址。

2 个答案:

答案 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}));

enter image description here

也就是说,你发送地址,它会返回你json

答案 1 :(得分:0)

你应该使用一些东西来解码lat,lng到可读的地址我使用这个库react-native-geocoder