Могу ли я добавить что-то вроде
'HI' : {fill : '#000'}
в 'stateSpecificStyles' ниже?
$('#map').usmap({ 'stateSpecificStyles': { 'FL' : {fill: '#FFA500'} } });
Структура похожа на:
var defaults = { ... // State specific styles. 'ST': {} 'stateSpecificStyles': {}, ... }
Ссылка на оригинальный файл Github: https://github.com/NewSignature/us-map/blob/dev/jquery.usmap.js
const someSettings = { 'HI' : {fill : '#000'} }; $('#map').usmap({ 'stateSpecificStyles': { 'FL' : {fill: '#FFA500'}, ...someSettings } });
Вы можете просто распространить их.