Get Coordinates widget | Get Geolocaiton Coordinates | Update Geolocaiton Widget | Get latitude and longitude
by AVERIANS https://www.averians.com
Odoo
$ 29.12
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Lines of code | 133 |
| Technical Name |
ais_get_coords_location_button |
| License | See License tab |
| Website | https://www.averians.com |
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Lines of code | 133 |
| Technical Name |
ais_get_coords_location_button |
| License | See License tab |
| Website | https://www.averians.com |
Get Coordinates widget | Get Geolocaiton Coordinates | Update Geolocaiton Widget | Get latitude and longitude
This Odoo module enables users to update latitude and longitude coordinates directly through a built-in widget button. The module requires an HTTPS connection, as it uses the browser's Geolocation API to accurately determine the user's location.
01
use location_capture_widget Widget.
Need to update latitude_field and longitude_field
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_partner_form_location_capture" model="ir.ui.view">
<field name="name">res.partner.location.capture.button</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_form"/>
<field name="arch" type="xml">
<xpath expr="//notebook/page[@name='geo_location']/group" position="inside">
<group string="Capture Current Location">
<widget
name="location_capture_widget"
lat_field="partner_latitude"
lng_field="partner_longitude"
precision_field=""/>
</group>
</xpath>
</field>
</record>
</odoo>
02
Form View
Get Help From Us!
Get Coordinates widget | Get Geolocaiton Coordinates | Update Geolocaiton Widget | Get latitude and longitude
- This Odoo module enables users to update latitude and longitude coordinates directly through a built-in widget button. The module requires an HTTPS connection, as it uses the browser's Geolocation API to accurately determine the user's location.
Installation
- Copy ais_get_coords_location_button module to addons folder
- Install the module normally like other modules.
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module