Small extension for Flask to make using Google Maps easy
Project description
# Flask Google Maps
Easy to use Google Maps in your Flask application
### requires
- Jinja
- Flask
- A google api key (optional I guess)
### Installation
```pip install flask-googlemaps```
or
```bash
git clone https://github.com/rochacbruno/Flask-GoogleMaps
cd Flask-GoogleMaps
python setup.py install
```
### Usage
You can create the map in the view and then send to the template context or you can use the template functions and filters directly
#### View
```python
from flask import Flask, render_template
from flaskext.googlemaps import GoogleMaps
from flaskext.googlemaps import Map
app = Flask(__name__, template_folder=".")
GoogleMaps(app)
@app.route("/")
def mapview():
# creating a map in the view
mymap = Map(
identifier="view-side",
lat=37.4419,
lng=-122.1419,
markers=[(37.4419, -122.1419)]
)
return render_template('example.html', mymap=mymap)
if __name__ == "__main__":
app.run(debug=True)
```
#### Template
```html
<!DOCTYPE html>
<html>
<head>
{{"decoupled-map"|googlemap_js(37.4419, -122.1419, markers=[(37.4419, -122.1419)])}}
{{mymap.js}}
</head>
<body>
<h1>Flask Google Maps Example</h1>
<h2> Template function centered, no marker </h2>
{{googlemap("simple-map", 37.4419, -122.1419)}}
<h2> Template filter decoupled with single marker </h2>
{{"decoupled-map"|googlemap_html(37.4419, -122.1419)}}
<h2> Template function with multiple markers </h2>
{% with map=googlemap_obj("another-map", 37.4419, -122.1419, markers=[(37.4419, -122.1419), (37.4300, -122.1400)]) %}
{{map.html}}
{{map.js}}
{% endwith %}
<h2> Generated in view</h2>
{{mymap.html}}
</body>
</html>
```
### Screenshot
<img src="screenshot.png" />
### TODO:
Implement other methods from the api, add layers etc...
Easy to use Google Maps in your Flask application
### requires
- Jinja
- Flask
- A google api key (optional I guess)
### Installation
```pip install flask-googlemaps```
or
```bash
git clone https://github.com/rochacbruno/Flask-GoogleMaps
cd Flask-GoogleMaps
python setup.py install
```
### Usage
You can create the map in the view and then send to the template context or you can use the template functions and filters directly
#### View
```python
from flask import Flask, render_template
from flaskext.googlemaps import GoogleMaps
from flaskext.googlemaps import Map
app = Flask(__name__, template_folder=".")
GoogleMaps(app)
@app.route("/")
def mapview():
# creating a map in the view
mymap = Map(
identifier="view-side",
lat=37.4419,
lng=-122.1419,
markers=[(37.4419, -122.1419)]
)
return render_template('example.html', mymap=mymap)
if __name__ == "__main__":
app.run(debug=True)
```
#### Template
```html
<!DOCTYPE html>
<html>
<head>
{{"decoupled-map"|googlemap_js(37.4419, -122.1419, markers=[(37.4419, -122.1419)])}}
{{mymap.js}}
</head>
<body>
<h1>Flask Google Maps Example</h1>
<h2> Template function centered, no marker </h2>
{{googlemap("simple-map", 37.4419, -122.1419)}}
<h2> Template filter decoupled with single marker </h2>
{{"decoupled-map"|googlemap_html(37.4419, -122.1419)}}
<h2> Template function with multiple markers </h2>
{% with map=googlemap_obj("another-map", 37.4419, -122.1419, markers=[(37.4419, -122.1419), (37.4300, -122.1400)]) %}
{{map.html}}
{{map.js}}
{% endwith %}
<h2> Generated in view</h2>
{{mymap.html}}
</body>
</html>
```
### Screenshot
<img src="screenshot.png" />
### TODO:
Implement other methods from the api, add layers etc...
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file Flask-GoogleMaps-0.1.4.tar.gz
.
File metadata
- Download URL: Flask-GoogleMaps-0.1.4.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0c9ffd7a115a82c7aed9b6b8ede0a73393f7f0b3e613d31ee1981735b4d06ea |
|
MD5 | b19b73240f78c908f8d3e6272eebbd32 |
|
BLAKE2b-256 | 7a638c048fa711426133005ca214a16bbeb6baf7c954e37be353e5f92b0e04c4 |