Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display critical facility details and min map #557

Open
wants to merge 5 commits into
base: develop
Choose a base branch
from

Conversation

Mloweedgar
Copy link
Member

No description provided.

Comment on lines +1 to +68
// import React, { Component } from 'react';
// // eslint-disable-next-line import/no-extraneous-dependencies
// import 'mapbox-gl/dist/mapbox-gl.css';
// import PropTypes from 'prop-types';
// import MapGL, { Source, Layer, NavigationControl } from 'react-map-gl';
//
// const TOKEN = process.env.REACT_APP_MAPBOX_ACCESS_TOKEN;
// export const dataLayer = {
// id: 'points',
// type: 'symbol',
// source: 'points',
// layout: {
// 'icon-image': 'marker-15',
// },
// };
//
// class MapPoint extends Component {
// // eslint-disable-next-line react/static-property-placement
// static propTypes = {
// geometry: PropTypes.shape({
// type: PropTypes.string.isRequired,
// coordinates: PropTypes.arrayOf(PropTypes.any).isRequired,
// }).isRequired,
// };
//
// // eslint-disable-next-line react/state-in-constructor
// state = {
// viewport: {
// latitude: -6.8042752,
// longitude: 39.247872,
// zoom: 13,
// },
// };
//
// render() {
// const { viewport } = this.state;
// const { geometry } = this.props;
// return (
// <MapGL
// mapStyle="mapbox://styles/mapbox/light-v9"
// mapboxApiAccessToken={TOKEN}
// width="100%"
// height="94vh"
// /* eslint-disable-next-line react/jsx-props-no-spreading,react/destructuring-assignment */
// {...viewport}
// onViewportChange={(updatedViewPort) => {
// const { latitude, longitude, zoom } = updatedViewPort;
// this.setState({ viewport: { latitude, longitude, zoom } });
// }}
// >
// <div style={{ position: 'absolute' }}>
// <NavigationControl />
// </div>
// <Source
// type="geojson"
// data={{
// type: 'Feature',
// geometry,
// }}
// >
// {/* eslint-disable-next-line react/jsx-props-no-spreading */}
// <Layer {...dataLayer} />
// </Source>
// </MapGL>
// );
// }
// }
// export default MapPoint;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello @Mloweedgar , do we need this code , we can remove it since the history is on github

Comment on lines +1 to +62
// import React, { Component } from 'react';
// // eslint-disable-next-line import/no-extraneous-dependencies
// import 'mapbox-gl/dist/mapbox-gl.css';
// import PropTypes from 'prop-types';
// import MapGL, { Source, Layer, NavigationControl } from 'react-map-gl';
//
// const TOKEN = process.env.REACT_APP_MAPBOX_ACCESS_TOKEN;
// export const dataLayer = {
// id: 'data',
// type: 'fill',
// paint: {
// 'fill-color': '#088',
// 'fill-opacity': 0.2,
// },
// };
//
// class MapPolygon extends Component {
// // eslint-disable-next-line react/static-property-placement
// static propTypes = {
// geometry: PropTypes.shape({
// type: PropTypes.string.isRequired,
// coordinates: PropTypes.arrayOf(PropTypes.any).isRequired,
// }).isRequired,
// };
//
// // eslint-disable-next-line react/state-in-constructor
// state = {
// viewport: {
// latitude: -6.8042752,
// longitude: 39.247872,
// zoom: 13,
// },
// };
//
// render() {
// const { viewport } = this.state;
// const { geometry } = this.props;
// return (
// <MapGL
// mapStyle="mapbox://styles/mapbox/light-v9"
// mapboxApiAccessToken={TOKEN}
// width="100%"
// height="94vh"
// /* eslint-disable-next-line react/jsx-props-no-spreading,react/destructuring-assignment */
// {...viewport}
// onViewportChange={(updatedViewPort) => {
// const { latitude, longitude, zoom } = updatedViewPort;
// this.setState({ viewport: { latitude, longitude, zoom } });
// }}
// >
// <div style={{ position: 'absolute' }}>
// <NavigationControl />
// </div>
// <Source type="geojson" data={geometry}>
// {/* eslint-disable-next-line react/jsx-props-no-spreading */}
// <Layer {...dataLayer} />
// </Source>
// </MapGL>
// );
// }
// }
// export default MapPolygon;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here we can always delete it and get it back from VCS

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants