What's new

Closed google maps in react native expo

Status
Not open for further replies.

kiotipot

Addict
Joined
Sep 13, 2015
Posts
73
Reaction
5
Points
99
Age
27
pa help po bakit ayaw mag render ng map sa mobile?
593146



ito po code ko sa map


import React from "react";
import { StyleSheet, Text, View } from "react-native";
import { MapView } from "expo";
export default class App extends React.Component {
render() {
return (
<MapView
style={{
flex: 1
}}
initialRegion={{
latitude: 37.78825,
longitude: -122.4324,
latitudeDelta: 0.0922,
longitudeDelta: 0.0421
}}
/>
);
}
}
 

Attachments

Status
Not open for further replies.
Back
Top