Skip to content

Commit

Permalink
Merge 7ec8ec3 into ccc7fee
Browse files Browse the repository at this point in the history
  • Loading branch information
AdriaGForgeFlow committed Nov 22, 2019
2 parents ccc7fee + 7ec8ec3 commit 7aba688
Show file tree
Hide file tree
Showing 18 changed files with 727 additions and 0 deletions.
99 changes: 99 additions & 0 deletions web_widget_map/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
==============
Web Widget Map
==============

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
:target: https://github.com/OCA/web/tree/12.0/web_widget_map
:alt: OCA/web
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/web-12-0/web-12-0-web_widget_map
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/162/12.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|

This module add the possibility to insert a map into Odoo form views using
the OpenLayers library.

**Table of contents**

.. contents::
:local:

Usage
=====

To insert a Bokeh chart in a view proceed as follows:

#. Add the widget in the view::

<widget name='map_widget'/>


When the widget is set in a view, the user will see a button, clicking on
the button will render the map.

.. figure:: https://raw.githubusercontent.com/OCA/web/12.0/web_widget_map/static/src/img/view_map_button.png
:align: center
:width: 600 px

.. figure:: https://raw.githubusercontent.com/OCA/web/12.0/web_widget_map/static/src/img/view_map.png
:align: center
:width: 600 px

By default the center of the map is set to latitude 0 and longitude 0.
Refer to the module hr_attendance_geolocation_map to see an example on how
to set the center and display markers in the map.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_widget_map%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* Eficent Business and IT Consulting Services S.L.

Contributors
~~~~~~~~~~~~

* Adria Gil Sorribes <adria.gil@eficent.com>

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/web <https://github.com/OCA/web/tree/12.0/web_widget_map>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
Empty file added web_widget_map/__init__.py
Empty file.
22 changes: 22 additions & 0 deletions web_widget_map/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright 2019 Eficent Business and IT Consulting Services S.L.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
'name': 'Web Widget Map',
'summary': """
Map widget using OpenLayers library""",
'version': '12.0.1.0.0',
'license': 'AGPL-3',
'author': 'Eficent Business and IT Consulting Services S.L.,'
'Odoo Community Association (OCA)',
'website': 'https://github.com/OCA/web',
'depends': [
'web',
],
'data': [
'views/assets.xml',
],
'qweb': [
'static/src/xml/web_map.xml',
],
}
1 change: 1 addition & 0 deletions web_widget_map/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Adria Gil Sorribes <adria.gil@eficent.com>
2 changes: 2 additions & 0 deletions web_widget_map/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This module add the possibility to insert a map into Odoo form views using
the OpenLayers library.
21 changes: 21 additions & 0 deletions web_widget_map/readme/USAGE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
To insert a Bokeh chart in a view proceed as follows:

#. Add the widget in the view::

<widget name='map_widget'/>


When the widget is set in a view, the user will see a button, clicking on
the button will render the map.

.. figure:: ../static/src/img/view_map_button.png
:align: center
:width: 600 px

.. figure:: ../static/src/img/view_map.png
:align: center
:width: 600 px

By default the center of the map is set to latitude 0 and longitude 0.
Refer to the module hr_attendance_geolocation_map to see an example on how
to set the center and display markers in the map.
Binary file added web_widget_map/static/description/icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7aba688

Please sign in to comment.