# Marker Control This is a React equivalent of Mapbox's [Marker Control](https://www.mapbox.com/mapbox-gl-js/api/#marker): ```js import ReactMap, {Marker} from 'react-map-gl'; export default MyMap = () => { return (
You are here
); } ``` ## Properties ##### `latitude` (Number) Latitude of the marker. ##### `longitude` (Number) Longitude of the marker. ##### `offsetLeft` (Number, optional) Offset of the marker from the left in pixels, negative number indicates left. ##### `offsetTop` (Number, optional) Offset of the marker from the top in pixels, negative number indicates up.