Skip to content

Commit e210609

Browse files
authored
Merge pull request #7 from AmeliaBR/gh-pages
Restart use cases report
2 parents dffd4d8 + 28210d9 commit e210609

File tree

7 files changed

+2322
-441
lines changed

7 files changed

+2322
-441
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
This repository is being used for work in the [W3C Maps For HTML Community Group](http://www.w3.org/community/maps4html/), governed by the [W3C Community License Agreement (CLA)](http://www.w3.org/community/about/agreements/cla/). To make substantive contributions, you must join the CG.
3+
This repository is being used for work in the [W3C Maps For HTML Community Group](https://www.w3.org/community/maps4html/), governed by the [W3C Community License Agreement (CLA)](https://www.w3.org/community/about/agreements/cla/). To make substantive contributions, you must join the CG.
44

55
If you are not the sole contributor to a contribution (pull request), please identify all
66
contributors in the pull request comment.

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
All Reports in this Repository are licensed by Contributors
22
under the
3-
[W3C Software and Document License](http://www.w3.org/Consortium/Legal/2015/copyright-software-and-document).
3+
[W3C Software and Document License](https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document).
44
Contributions to Specifications are made under the
55
[W3C CLA](https://www.w3.org/community/about/agreements/cla/).

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# HTML-Map-Element-UseCases-Requirements
22
Use cases and requirements for Maps on the Web
33

4-
This is the home of the current version of the [Use Cases and Requirements for Standardizing Web Maps](http://maps4html.github.io/HTML-Map-Element-UseCases-Requirements/).
4+
This is the home of the current version of the [Use Cases and Requirements for Standardizing Web Maps](https://maps4html.github.io/HTML-Map-Element-UseCases-Requirements/).
55

66
## Found a bug? Want to contribute something?
77
If you found a problem with the document, no matter how small,
@@ -13,7 +13,7 @@ Proposals for normative changes to the specification should take
1313
place on the [Maps4HTML mailing list](mailto:[email protected]).
1414

1515
## Let me see it!
16-
It's on [github pages, here](http://maps4html.github.io/HTML-Map-Element-UseCases-Requirements/).
16+
It's on [github pages, here](https://maps4html.github.io/HTML-Map-Element-UseCases-Requirements/).
1717

1818
## Join us!
1919
[Join the Maps4HTML Community Group](https://www.w3.org/community/maps4html/) and help us make the Web a better place ... for MAPS!!

draft-2015.html

Lines changed: 451 additions & 0 deletions
Large diffs are not rendered by default.

examples/map-viewers/globe.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<title>Single Location Map Views — Reference implementations</title>
8+
</head>
9+
<body>
10+
<h1>Examples for <a href="../../index.html#use-case-map-widget">Use Case: Display an interactive map</a></h1>
11+
12+
<p>
13+
The embedded map viewers here show their default view,
14+
which is generally a map of the whole globe
15+
although it may be personalized to the viewer's location.
16+
</p>
17+
18+
<h2>Google Maps</h2>
19+
20+
<iframe src="https://www.google.com/maps/embed" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
21+
22+
<h2>OpenStreetMap</h2>
23+
24+
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.openstreetmap.org/export/embed.html" style="border: 1px solid black"></iframe><br/><small><a href="https://www.openstreetmap.org/">View Larger Map</a></small>
25+
26+
27+
</body>
28+
</html>
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<title>Single Location Map Views — Reference implementations</title>
8+
</head>
9+
<body>
10+
<h1>Examples for <a href="../../index.html#use-case-single-location">Use Case: Display a location on a map</a></h1>
11+
12+
<p>
13+
The embedded map viewers here are displaying the location of
14+
CERN, birthplace of the web:
15+
</p>
16+
<pre>
17+
CERN
18+
Esplanade des Particules 1
19+
1217 Meyrin
20+
Switzerland
21+
</pre>
22+
<p>
23+
The embed codes were generated by first searching for the address
24+
on the services' own map user interfaces,
25+
and then using their HTML embed code option (with default options).
26+
However, most of the services also have an option
27+
to construct the embedded map URL with human-readable HTML,
28+
although it may require a developer's API key.
29+
</p>
30+
31+
<h2>Google Maps</h2>
32+
33+
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d44156.06881542181!2d6.0130244457978295!3d46.23523057360836!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x478c62fcec737b11%3A0x81bef3ae7a885e31!2sCERN!5e0!3m2!1sen!2sca!4v1552858082440" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
34+
35+
<h2>OpenStreetMap</h2>
36+
37+
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.openstreetmap.org/export/embed.html?bbox=6.052817702293396%2C46.23131259369175%2C6.056969761848451%2C46.235594723049495&amp;layer=mapnik&amp;marker=46.23345370013554%2C6.054893732070923" style="border: 1px solid black"></iframe><br/><small><a href="https://www.openstreetmap.org/?mlat=46.23345&amp;mlon=6.05489#map=18/46.23345/6.05489">View Larger Map</a></small>
38+
39+
40+
</body>
41+
</html>

0 commit comments

Comments
 (0)