crm
crm copied to clipboard
Whether OroCRM really needs the «Wind Speed Unit» and «Temperature Unit» options?
By why is this code block in a CRM at all?
if (this.options.showWeather) {
var temperatureUnitKey = localeSettings.settings.unit.temperature.toUpperCase();
var windSpeedUnitKey = localeSettings.settings.unit.wind_speed.toUpperCase();
weatherLayer = new google.maps.weather.WeatherLayer({
temperatureUnits: google.maps.weather.TemperatureUnit[temperatureUnitKey],
windSpeedUnits: google.maps.weather.WindSpeedUnit[windSpeedUnitKey]
});
weatherLayer.setMap(this.map);
cloudLayer = new google.maps.weather.CloudLayer();
cloudLayer.setMap(this.map);
}
https://github.com/orocrm/platform/blob/2.1.2/src/Oro/Bundle/AddressBundle/Resources/public/js/mapservice/googlemaps.js#L79-L90