Skip to content
Snippets Groups Projects
Commit a51d9dc8 authored by Taneli Riihimäki's avatar Taneli Riihimäki
Browse files

Refactoring a bit, remove things that arent used, add autofocus on forms, add...

Refactoring a bit, remove things that arent used, add autofocus on forms, add powerpoint to the popup
parent 4c125a44
No related branches found
No related tags found
1 merge request!21Development
......@@ -6,7 +6,7 @@ import {
class DrawTools extends Component {
_onCreated = (e) => {
let type = e.layerType; // from the example; isn't used right now, but may be relevant in the future
//let type = e.layerType; // from the example; isn't used right now, but may be relevant in the future
let layer = e.layer;
let geoJSON = layer.toGeoJSON();
console.log(JSON.stringify(geoJSON, null, 4)); // makes the output readable in the console
......
......@@ -86,13 +86,14 @@ export class LoginForm extends React.Component {
</div>
<div className='login'>
<form onSubmit={this.handleLogin}>
<h1>demo login</h1>
<h1>login</h1>
<br />
<input
placeholder='Enter Username'
name='username'
value={this.state.username}
onChange={this.handleChange}
autoFocus
required
/>
<br />
......
......@@ -100,6 +100,7 @@ export class RegisterForm extends React.Component {
name='username'
value={this.state.username}
onChange={this.handleChange}
autoFocus
required
/>
<br />
......
......@@ -2,11 +2,10 @@ import React, {Component} from 'react';
import {
Map,
TileLayer,
ZoomControl,
Marker,
Popup
} from 'react-leaflet'
import DrawTools from './DrawTools.js'
import DrawTools from './DrawTools'
class UserMap extends Component {
constructor(props){
......@@ -84,11 +83,10 @@ class UserMap extends Component {
attribution='&copy; <a href="https://www.maanmittauslaitos.fi/">Maanmittauslaitos</a>'
url={this.props.mapUrl}
/>
<ZoomControl position='topright' />
<DrawTools position={this.props.position} />
<Marker position={this.props.position}>
<Popup>
Se on perjantai, my dudes <br />
<Popup maxWidth="600px">
<iframe title="Esitys" src="https://jamkstudent-my.sharepoint.com/personal/l4074_student_jamk_fi/_layouts/15/Doc.aspx?sourcedoc={175bb4df-310a-4e1e-b805-e02e8dd4d6c5}&amp;action=embedview&amp;wdAr=1.7777777777777777" width="600px" height="400px" autoplay frameborder="0">Welcome to Wimma LAB<a href="https://office.com">Microsoft Office</a> presentation, powered by <a href="https://office.com/webapps">Office Online</a>.</iframe>
</Popup>
</Marker>
{this.state.ownLat !== null && <Marker position={[this.state.ownLat, this.state.ownLng]}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment