how to match States on acronyms
-
If you need this, for countries like Australia where we mainly use the abbreviation of the state names like NSW.
file gf-google-address-autocomplete/js/map_data.js
around line 80.case "administrative_area_level_1": state = val.split(' ').map(function(item){return item[0]}).join('').toUpperCase(); break;
- The topic ‘how to match States on acronyms’ is closed to new replies.