I tried ResMap and it produced a Chimera command script for my map emd_1007.map with file name
That script tries to do both the surface coloring and the plane slicing animation. First it does the surface coloring, then it immediately shows only a single plane of the map so you can’t see the surface. So the script is messed up. If you make a copy of the script, delete all the lines below the one that says OPTIONAL: ResMap Slice Animation, then start Chimera (with no data open) and open the new edited script it will show the colored surface. You would have to talk to the author of ResMap, Alp Kucukelbir to get this fixed.
# Color a map by local resolution computed by ResMap
# Initial version of script courtesy of Tom Goddard, UCSF.
# Open both volumes and hide the ResMap volume.
set bg_color white
open #0 emd_1007.map
open #1 emd_1007_resmap.map
volume #1 hide
# Color the original map with the values from the ResMap output.
scolor #0 volume #1 cmap 12.40,blue:14.42,cyan:16.44,green:18.46,yellow:20.48,orange:22.50,red:22.51,gray
# OPTIONAL: ResMap Slice Animation.
# Show midway slice of the original map with contour level below the minimum map value.
volume #0 planes z,65 step 1 level -1 style surface
# Show a smooth transparent contour surface indicating the structure boundaries.
vop gaussian #0 sDev 5 model #2
volume #2 level 0.02 step 1 color .9,.7,.7,.5
# Zoom out a bit and tilt to a nice viewing angle.
turn x -45
turn y -30
turn z -30
scale 0.5
# Cycle through planes from N/2 to 4N/5 up to N/5 and back to N/2.
volume #0 planes z,65,104,0.25
wait 156
volume #0 planes z,104,26,0.25
wait 312
volume #0 planes z,26,65,0.25