| 
					 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23  | 
						 <MapView             provider={PROVIDER_GOOGLE}             style={styles.map}             region={{               latitude: 41.0538538,               longitude: 28.805605,               latitudeDelta: 0.015,               longitudeDelta: 0.0121,             }}         >              <Polygon                  onPress={()=>alert('tıklandı')}                  strokeWidth={3}                  strokeColor={"red"}                  fillColor={"yellow"}                  tappaple={true}                  coordinates={[                {latitude: 41.051873, longitude: 28.809529},                {latitude: 41.050525, longitude: 28.809171},                {latitude: 41.051896, longitude: 28.812212}              ]} />         </MapView>  |