Path: blob/main/src/components/CameraMap.js
270 views
import React from "react";1import Media from "./Media";23function CameraMap(props) {4const { handleCameraChange } = props;5return (6<div className="map" style={{ position: "absolute", zIndex: 10 }}>7<img8alt="Mapa da câmera"9draggable="false"10src={Media.Images.Map}11style={{ zIndex: "1", width: "100%" }}12useMap="#map"13/>14<a15href=""16onClick={handleCameraChange}17title="Stage"18style={{19position: "absolute",20left: "27.25%",21top: "5%",22width: "13.25%",23height: "9.25%",24zIndex: 2,25}}26></a>27<a28href=""29onClick={handleCameraChange}30title="Restrooms"31style={{32position: "absolute",33left: "79.75%",34top: "24.25%",35width: "12.75%",36height: "8.25%",37zIndex: 2,38}}39></a>40<a41href=""42onClick={handleCameraChange}43title="Dinning Area"44style={{45position: "absolute",46left: "24%",47top: "20.5%",48width: "12.25%",49height: "8.25%",50zIndex: 2,51}}52></a>53<a54href=""55onClick={handleCameraChange}56title="Backstage"57style={{58position: "absolute",59left: "0%",60top: "27%",61width: "13.5%",62height: "9%",63zIndex: 2,64}}65></a>66<a67href=""68onClick={handleCameraChange}69title="Pirate Cove"70style={{71position: "absolute",72left: "12%",73top: "39.5%",74width: "12.75%",75height: "9%",76zIndex: 2,77}}78></a>79<a80href=""81onClick={handleCameraChange}82title="Supply Closet"83style={{84position: "absolute",85left: "8.25%",86top: "62.5%",87width: " 12%",88height: "8.25%",89zIndex: 2,90}}91></a>92<a93href=""94onClick={handleCameraChange}95title="West Hall"96style={{97position: "absolute",98left: "26.5%",99top: " 70.5%",100width: "12.5%",101height: "9.25%",102zIndex: 2,103}}104></a>105<a106href=""107onClick={handleCameraChange}108title="East Hall"109style={{110position: "absolute",111left: "49%",112top: "70%",113width: "14.5%",114height: "9.5%",115zIndex: 2,116}}117></a>118<a119href=""120onClick={handleCameraChange}121title="W. Hall Corner"122style={{123position: "absolute",124left: "26%",125top: "81.75%",126width: "14%",127height: "8.25%",128zIndex: 2,129}}130></a>131<a132href=""133onClick={handleCameraChange}134title="E. Hall Corner"135style={{136position: "absolute",137left: " 49.25%",138top: "81.25%",139width: "14.25%",140height: "10%",141zIndex: 2,142}}143></a>144<a145href=""146onClick={handleCameraChange}147title="Kitchen"148style={{149position: "absolute",150left: "79.5%",151top: "57.75%",152width: "14.25%",153height: "9.25%",154zIndex: 2,155}}156></a>157</div>158);159}160161export default CameraMap;162163164