Availability |
Odoo Online
Odoo.sh
On Premise
|
Lines of code | 295 |
Technical Name |
coordinates_widget |
License | LGPL-3 |
Website | http://loxeltechnology.com |
Availability |
Odoo Online
Odoo.sh
On Premise
|
Lines of code | 295 |
Technical Name |
coordinates_widget |
License | LGPL-3 |
Website | http://loxeltechnology.com |
OVERVIEW
Overview:
Introducing the Map View application, designed to enhance your data visualization experience. This application provides a dynamic map view that integrates seamlessly with any Odoo model, enabling you to visualize geographical data points with ease. Its simple yet powerful group by and filter options ensure that you can customize the map to meet your specific needs without any hassle.
Introducing the Map View application, designed to enhance your data visualization experience. This application provides a dynamic map view that integrates seamlessly with any Odoo model, enabling you to visualize geographical data points with ease. Its simple yet powerful group by and filter options ensure that you can customize the map to meet your specific needs without any hassle.
Key Features
-
Universal Model Integration:
- Compatible with any Odoo model.
- Easy to implement with minimal coding.
- Customization and Flexibility:
- Configure the map view to suit different models and fields.
- Performance Optimization:
- Fast rendering and smooth interactions.
SCREENSHOTS
COMPANY PAGE

ENABLE ACCESS TO LOCATION

RESULT

Flow this code to integrate with your model:
1 - Inherit view and add the widget:
1 - Inherit view and add the widget:
- Attribute longitude is the field of longitude in your model (if you not have custom field for this please don't change, because all model has default field named 'longitude' )
- Attribute latitude is the field of latitude in your model (if you not have custom field for this please don't change, because all model has default field named 'latitude' )
- WARNING : Don't change the attribute name and widget in any model
<record id="view_id" model="ir.ui.view">
<field name="name">view.name</field>
<field name="model">your.model</field>
<field name="inherit_id" ref="your_model.view_view_id"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='website']" position="after">
<field name="coordinates"
longitude="longitude"
latitude="latitude"
widget="coridnation_field"/>
</xpath>
</field>
</record>
SUPPORT
Please log in to comment on this module