• Y
  • List All
  • Feedback
    • This Project
    • All Projects
Profile Account settings Log out
  • Favorite
  • Project
  • All
Loading...
  • Log in
  • Sign up
ansdpwn / 도로위험상황_모니터링및안내시스템 star
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB 1
  • Files
  • Commit
  • Branches
도로위험상황_모니터링및안내시스템srccomponentMap.js
Download as .zip file
File name
Commit message
Commit date
.bundle
[FEAT] fogapp
2023-11-14
__tests__
[FEAT] fogapp
2023-11-14
android
[FEAT] apk생성
2023-11-15
ios
[FEAT] fogapp
2023-11-14
src
[FEAT] apk생성
2023-11-15
.buckconfig
[FEAT] fogapp
2023-11-14
.eslintrc.js
[FEAT] fogapp
2023-11-14
.flowconfig
[FEAT] fogapp
2023-11-14
.gitignore
[FEAT] fogapp
2023-11-14
.node-version
[FEAT] fogapp
2023-11-14
.prettierrc.js
[FEAT] fogapp
2023-11-14
.ruby-version
[FEAT] fogapp
2023-11-14
.watchmanconfig
[FEAT] fogapp
2023-11-14
App.js
[FEAT] fogapp
2023-11-14
Gemfile
[FEAT] fogapp
2023-11-14
app.json
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
babel.config.js
[FEAT] fogapp
2023-11-14
index.js
[FEAT] fogapp
2023-11-14
metro.config.js
[FEAT] fogapp
2023-11-14
package-lock.json
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
package.json
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
test.json
[FEAT] fogapp
2023-11-14
File name
Commit message
Commit date
component
[FEAT] apk생성
2023-11-15
context
[FIX] 사진 촬영 오류 수정
2023-11-15
navigator
[FIX] driving문제 수정
2023-11-15
resoureces
[CHORE] modal 메시지 수정, login logo수정
2023-11-14
screens
[FIX] 사진 촬영 오류 수정
2023-11-15
color.js
[FIX] test 코드수정
2023-11-14
File name
Commit message
Commit date
Action.js
[FIX] 사진 촬영 오류 수정
2023-11-15
BottomDrop.js
[FEAT] fogapp
2023-11-14
Button.js
[FEAT] fogapp
2023-11-14
Checkbox.js
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
CustomDrawer.js
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
DriveStatus.js
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
Input.js
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
Logo.js
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
Map.js
[FEAT] apk생성
2023-11-15
ModalComponent.js
[CHORE] modal 수정
2023-11-14
Photo.js
[FEAT] apk생성
2023-11-15
Search.js
[FIX] api key 변경, color.js 로 관리 변경
2023-11-14
moonyeju 2023-11-15 7f8fb9b [FEAT] apk생성 UNIX
Raw Open in browser Change history
import React, {useEffect, useState} from 'react'; import {View, StyleSheet, Keyboard} from 'react-native'; import MapView, {Marker, PROVIDER_GOOGLE} from 'react-native-maps'; import {url} from '../url'; import Button from './Button'; import Search from './Search'; import {BLACK, PRIMERY, RED, WHITE} from '../color'; export default function Map({ lat, long, showsUserLocation, latDelta, longDelta, children, }) { return ( <View style={styles.mapStyle}> <MapView style={styles.mapStyle} provider={PROVIDER_GOOGLE} initialRegion={{ latitude: lat, longitude: long, latitudeDelta: latDelta, longitudeDelta: longDelta, }} showsUserLocation={showsUserLocation}> {children} {/* {actionLocation && actionLocation.length > 0 && actionLocation.map((loc, index) => ( <Marker key={index} // 각 Marker에 고유한 키를 할당 coordinate={loc} pinColor={RED} title="action Location" /> ))} */} </MapView> {/* <View style={styles.buttonstyle}> <View style={styles.markerButtonStyle}> <Button title={'마커 표시'} onPress={sendPostRequest} color={WHITE} width={'100%'} textAlign={'center'} padding={10} backgroundColor={PRIMERY} /> </View> </View> */} </View> ); } const styles = StyleSheet.create({ // markerButtonStyle: { // width: '45%', // position: 'absolute', // bottom: 7, // left: 0, // }, mapStyle: { flex: 1, }, // buttonstyle: { // marginHorizontal: 15, // }, });

          
        
    
    
Copyright Yona authors & © NAVER Corp. & NAVER LABS Supported by NAVER CLOUD PLATFORM

or
Sign in with github login with Google Sign in with Google
Reset password | Sign up